-
Notifications
You must be signed in to change notification settings - Fork 1
/
Bacterie.h
executable file
·88 lines (71 loc) · 2.26 KB
/
Bacterie.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
#ifndef BACTERIE_H
#define BACTERIE_H
//==============================
// INCLUDES
//==============================
#include <algorithm> // std::random_shuffle
#include <vector> // std::vector
/**
* @class Bacterie
* @brief
*/
class Bacterie
{
public:
//==============================
// CONSTRUCTORS
//==============================
Bacterie();
//==============================
// DESTRUCTOR
//==============================
virtual ~Bacterie();
//==============================
// GETTERS
//==============================
virtual char Gettype();
virtual float GetA_int()=0;
virtual float GetB_int()=0;
virtual float GetC_int()=0;
virtual float& Getw()=0;
//==============================
// SETTERS
//==============================
//==============================
// OPERATORS
//==============================
//==============================
// PUBLIC METHODS
//==============================
virtual void Describe()=0; // Décrit la bactérie
virtual int Death(); // renvoie 1 (la bacterie vit) ou 0 (la bacterie meurt) avec une proba p_death
virtual int Mute(); // renvoie 1 (la bacterie ne mute pas) ou 0 (la bacterie mute) avec une proba p_mutation
virtual Bacterie* Division()=0; // methode qui gere la division des bacteries (x2) (divise les concentrations de la bacterie par deux et renvoit un pointeur sur une bacterie identique)
virtual float absorb(float c, float h)=0; // execute absorb sur la bacterie, prend en argument le pas de temps h
//et la concentration de la case
protected:
//==============================
// PROTECTED METHODS
//==============================
//==============================
// ATTRIBUTES
//==============================
float p_death; // probabilité de mort (=0.02)
float p_mutation; // probabilité de mutation (0)
float W_min; // seuil minimum de fitness (=0.001)
// Concentration intracellulaire en métabolites
float A_int;
float B_int;
float C_int;
char type; // type de bacterie (A ou B)
//==============================
// GETTER DEFINITION
//==============================
//==============================
// SETTER DEFINITION
//==============================
//==============================
// OPERATOR DEFINITION
//==============================
};
#endif // BACTERIE_H