Scheduler
noLearning.h
Go to the documentation of this file.
1 
10 #ifndef NOLEARNING_H
11 #define NOLEARNING_H
12 
13 #include "learningStrategy.h"
14 
15 namespace Mdp
16 {
17 
18 struct Context;
19 
21 {
22 public:
23  static constexpr const char *configKey = "noLearning";
24 public:
25  NoLearning(std::shared_ptr<Context> context);
26  void updateModel();
27  void initializeModel();
28 private:
29 };
30 
31 
32 }
33 #endif
static constexpr const char * configKey
Definition: noLearning.h:23
NoLearning(std::shared_ptr< Context > context)
Definition: noLearning.cpp:20
void initializeModel()
Definition: noLearning.cpp:25
Definition: action.h:18
void updateModel()
Definition: noLearning.cpp:33
std::shared_ptr< Context > context