Scheduler
learningStrategy.cpp
Go to the documentation of this file.
1 
10 #include "learningStrategy.h"
11 
12 #include <mdp/context.h>
13 #include <mdp/policy.h>
14 #include <mdp/rewards.h>
15 #include <mdp/transitionMatrix.h>
16 
17 
18 using namespace Mdp;
19 
20 LearningStrategy::LearningStrategy(std::shared_ptr<Context> c) : context(c)
21 {
22 }
23 
25 {
26 }
27 
28 
Definition: action.h:18
LearningStrategy(std::shared_ptr< Context > context)