Scheduler
domainModel.h
Go to the documentation of this file.
1 
10 #ifndef DOMAINMODEL_H
11 #define DOMAINMODEL_H
12 
13 
14 namespace Mdp
15 {
16 
17 
19 {
20 public:
21  virtual ~DomainModel(){};
22  /*The rewards can be provided to the mdp frameword via two means:
23  *-Either we provide a full table of (state-action;rewards),
24  *-Or we let the learning strategy learn this table by measuring
25  * the reward obtained from the environment via the measureReward method.*/
26  virtual double measureReward()=0;
27 
28 };
29 
30 
31 
32 
33 
34 
35 }
36 
37 
38 #endif
virtual ~DomainModel()
Definition: domainModel.h:21
virtual double measureReward()=0
Definition: action.h:18