Marmote Core
The project aims at realizing the prototype of a software environment dedicated to modeling with Markov chains.
psi_alias.h
1 
2 
3 #ifndef _PSI_ALIAS_H_
4 #define _PSI_ALIAS_H_
5 
6 #include <iostream>
7 #include <fstream>
8 #include <string>
9 #include <algorithm>
10 
11 // C include
12 #include <cstdlib>
13 #include <unistd.h>
14 
15 // local includes
16 #include "alias.h"
17 #include "hbf.h"
18 
19 using namespace std;
20 
21 
22 void precomputation(const string path,const string file_out,const string ext);
23 
24 void help_alias();
25 
26 void version_alias();
27 int main_psi_alias(int argc,char **argv);
28 
29 #endif
30 
31 
32 
Header of HBF Class.
Utilization of the Standard Template Library.
Header of Alias class.