Maximum Acyclic Subgraph - Multiple Sequence Alignment
MaximumAcyclicSubgraph
Policy.h
1 #include "valueMLmodel.h"
2 
3 #ifndef POLICY_H
4 #define POLICY_H
5 
6 
7 using namespace std;
8 
9 class Policy {
10  public:
11  Policy(){};
12  Policy(unsigned int dimstate);
13  ~Policy(){};
14 
18  valueMLmodel vModel;
19 
25  std::vector <float> runPolicy(state* s) {
26  return vModel.calcValueEstimates(s);
27  };
28 };
29 #endif
This state class encapsulates the current game state. It can output possible actions and select them...
Definition: State.h:16