Marmote Core
The project aims at realizing the prototype of a software environment dedicated to modeling with Markov chains.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations
psi_traj.h
1 #ifndef PSI_TRAJ_H
2 #define PSI_TRAJ_H
3 
4 
5 // C++ includes
6 #include <iostream>
7 #include <string>
8 #include <vector>
9 #include <algorithm>
10 #include <fstream>
11 
12 // C include
13 #include <cstdlib>
14 
18 using namespace std;
19 
20 // Unix include
21 #include <unistd.h>
22 
23 // local includes
24 #include "alea.h"
25 #include "alias.h"
26 #include "cost.h"
27 #include "hbf.h"
28 
29 void help_traj();
30 void version_traj();
31 void traj(const string path,const string file_out,int state,const int length);
32 int main_psi_traj(int argc,char **argv);
33 
34 
35 #endif // PSI_TRAJ_H