-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathtest_e_germ_problem.py
87 lines (65 loc) · 2.5 KB
/
test_e_germ_problem.py
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
import unittest
from pathlib import Path
EC_CORE_MODEL = Path(__file__).parent.joinpath('data', 'e_coli_core.xml')
MIN_GROWTH = 0.1
MAX_TRIES = 3
class TestRKOP(unittest.TestCase):
def setUp(self):
from mewpy.io import read_sbml
model = read_sbml(EC_CORE_MODEL, regulatory=False, warnings=False)
from mewpy.problems import RKOProblem
self.problem = RKOProblem(model, [])
def test_targets(self):
target = self.problem.target_list
self.assertGreater(len(target), 0)
def test_generator(self):
import random
candidate = self.problem.generator(random)
self.assertGreater(len(candidate), 0)
def test_decode(self):
import random
candidate = self.problem.generator(random)
solution = self.problem.decode(candidate)
n_candidate = self.problem.encode(solution)
self.assertEqual(candidate, n_candidate)
def test_to_constraints(self):
"""
"""
import random
ispass = False
tries = 0
constraints = []
while not ispass and tries < MAX_TRIES:
tries += 1
candidate = self.problem.generator(random)
solution = self.problem.decode(candidate)
constraints = self.problem.solution_to_constraints(solution)
if len(constraints) > 0:
ispass = True
self.assertGreater(len(constraints), 0)
def test_simul_constraints(self):
import random
candidate = self.problem.generator(random)
solution = self.problem.decode(candidate)
constraints = self.problem.solution_to_constraints(solution)
self.problem.simulator.simulate(constraints=constraints)
class TestROUP(TestRKOP):
def setUp(self):
from mewpy.io import read_sbml
model = read_sbml(EC_CORE_MODEL, regulatory=False, warnings=False)
from mewpy.problems import ROUProblem
self.problem = ROUProblem(model, [])
class TestGKOP(TestRKOP):
def setUp(self):
from mewpy.io import read_sbml
model = read_sbml(EC_CORE_MODEL, regulatory=False, warnings=False)
from mewpy.problems import GKOProblem
self.problem = GKOProblem(model, [])
class TestGOUP(TestRKOP):
def setUp(self):
from mewpy.io import read_sbml
model = read_sbml(EC_CORE_MODEL, regulatory=False, warnings=False)
from mewpy.problems import GOUProblem
self.problem = GOUProblem(model, [])
if __name__ == '__main__':
unittest.main()