Maximum Acyclic Subgraph - Multiple Sequence Alignment
MaximumAcyclicSubgraph
Episode.h
1 #ifndef EPISODE_H
2 #define EPISODE_H
3 
4 #include <vector>
5 
6 using std::vector;
7 
8 class Episode{
9  public:
10  Episode(){};
11  vector<vector<bool>> states;
12  vector<vector<bool>> actions;
13  unsigned int score;
14  unsigned int numbOfStates;
15  };
16 #endif
vector< vector< bool > > actions
Vector of Actions corresponding to states.
Definition: Episode.h:12
unsigned int score
Score of the states vector.
Definition: Episode.h:13
vector< vector< bool > > states
Vector of SelectedSubsets of states.
Definition: Episode.h:10
unsigned int numbOfStates
Number of States in states.
Definition: Episode.h:14
Definition: Episode.h:8