Scheduler
actionSelectionStrategy.h
Go to the documentation of this file.
1 
10 #ifndef ACTION_SELECTION_STRATEGY_H
11 #define ACTION_SELECTION_STRATEGY_H
12 
13 #include <vector>
14 
15 #include <mdp/actionSpace.h>
16 
17 namespace Mdp
18 {
19 
21 {
22 public:
25  virtual std::vector<double> generatePolicy(const std::vector<double>&, action_t bestAction)=0;
26 };
27 
28 }
29 
30 #endif /*ACTION_SELECTION_STRATEGY_H*/
virtual std::vector< double > generatePolicy(const std::vector< double > &, action_t bestAction)=0
size_t action_t
Definition: action_impl.h:18
Definition: action.h:18