Loading [MathJax]/extensions/tex2jax.js
AIToolbox
A library that offers tools for AI problem solving.
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
Functions
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
Variables
a
d
e
h
i
l
n
q
Typedefs
a
b
c
d
f
h
m
p
q
r
s
t
u
v
Enumerations
Enumerator
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
~
Functions
a
b
c
d
e
f
g
h
i
j
l
m
o
p
q
r
s
t
u
v
w
~
Variables
a
b
c
d
e
f
g
i
k
m
n
o
p
q
r
s
t
v
w
Typedefs
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
v
Enumerations
Enumerator
Related Functions
Files
File List
File Members
All
Functions
Macros
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
Types.hpp
Go to the documentation of this file.
1
#ifndef AI_TOOLBOX_MDP_TYPES_HEADER_FILE
2
#define AI_TOOLBOX_MDP_TYPES_HEADER_FILE
3
4
#include <vector>
5
6
#include <
AIToolbox/Types.hpp
>
7
#include <
AIToolbox/TypeTraits.hpp
>
8
9
namespace
AIToolbox::MDP
{
44
using
Values
=
Vector
;
45
using
Actions
= std::vector<size_t>;
46
47
struct
ValueFunction
{
48
Values
values
;
49
Actions
actions
;
50
};
51
52
using
QFunction
=
Matrix2D
;
53
55
}
56
57
#endif
AIToolbox::MDP::QFunction
Matrix2D QFunction
Definition:
Types.hpp:52
AIToolbox::Matrix2D
Eigen::Matrix< double, Eigen::Dynamic, Eigen::Dynamic, Eigen::RowMajor|Eigen::AutoAlign > Matrix2D
Definition:
Types.hpp:18
AIToolbox::MDP::ValueFunction
Definition:
Types.hpp:47
AIToolbox::Vector
Eigen::Matrix< double, Eigen::Dynamic, 1 > Vector
Definition:
Types.hpp:16
AIToolbox::MDP::ValueFunction::values
Values values
Definition:
Types.hpp:48
AIToolbox::MDP::Actions
std::vector< size_t > Actions
Definition:
Types.hpp:45
AIToolbox::MDP
Definition:
DoubleQLearning.hpp:10
TypeTraits.hpp
AIToolbox::MDP::Values
Vector Values
Definition:
Types.hpp:44
Types.hpp
AIToolbox::MDP::ValueFunction::actions
Actions actions
Definition:
Types.hpp:49