-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRun.h
executable file
·58 lines (55 loc) · 2.2 KB
/
Run.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
// ===========================================================================
// Includes
// ===========================================================================
#ifndef RUN_H
#define RUN_H
#include <fstream>
#include <string>
#include <vector>
#include <tuple>
class Run{
// =========================================================================
// Protected Methods
// =========================================================================
protected:
int W_ =0;
int H_ =0;
int max_size_=300;
double A_percent_ = 0;
double RAA_=0;
double RAB_=0;
double RBB_=0;
double RBC_=0;
double Wmin_=0;
double Pdie_=0;
double Pmut_=0;
double odeStep_=0;
double odeN_=1;
public:
std::vector<std::tuple<int, int, int, int, int, int, int, int,
double, int>> toDet_;
std::vector<std::tuple<int, int, int, int>> notDet_;
std::ofstream squars_;
// =========================================================================
// Constructors
// =========================================================================
Run(std::string s, std::string s_squars);
// ===========================================================================
// Destructor
// ===========================================================================
~Run();
// =========================================================================
// Public Methods
// =========================================================================
double single_test(int T, double A, double D);
void dynamic_analyse(std::tuple<int,int,int,int,double,double,
double,double,double,int> tupin, std::string s_output);
double multip_test(int T, double A, double D, int Rep);
// =========================================================================
// Getters
// =========================================================================
// =========================================================================
// Setters
// =========================================================================
};
#endif // RUN_H