-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathexecution_flow
70 lines (54 loc) · 2.93 KB
/
execution_flow
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
Simplified execution flow for the Gray-Scott example of 3 iterations.
-> call start /run.py
--> call run /adtool/ExperimentPipeline.py
---> call bootstrap /adtool/explorers/IMGEPExplorer.py
----> call sample /examples/grayscott/maps/GrayScottParameterMap.py
# First iteration
---> call map /examples/grayscott/systems/GrayScott.py
----> call update /examples/grayscott/systems/GrayScott.py
---> call render /examples/grayscott/systems/GrayScott.py
---> call map /adtool/explorers/IMGEPExplorer.py
----> call observe_results /adtool/explorers/IMGEPExplorer.py
-----> call map /examples/grayscott/maps/GrayScottStatistics.py
----> call map /adtool/wrappers/SaveWrapper.py
----> call suggest_trial /adtool/explorers/IMGEPExplorer.py
-----> call sample /examples/grayscott/maps/GrayScottStatistics.py
-----> call call_mutate_method /adtool/wrappers/mutators.py
------> call mutate /examples/grayscott/maps/GrayScottParameterMap.py
-------> call add_gaussian_noise /adtool/wrappers/mutators.py
----> call map /examples/grayscott/maps/GrayScottParameterMap.py
---> call read_last_discovery /adtool/explorers/IMGEPExplorer.py
---> call save /adtool/ExperimentPipeline.py
# Second iteration
---> call map /examples/grayscott/systems/GrayScott.py
----> call update /examples/grayscott/systems/GrayScott.py
---> call render /examples/grayscott/systems/GrayScott.py
---> call map /adtool/explorers/IMGEPExplorer.py
----> call observe_results /adtool/explorers/IMGEPExplorer.py
-----> call map /examples/grayscott/maps/GrayScottStatistics.py
----> call map /adtool/wrappers/SaveWrapper.py
----> call suggest_trial /adtool/explorers/IMGEPExplorer.py
-----> call sample /examples/grayscott/maps/GrayScottStatistics.py
-----> call call_mutate_method /adtool/wrappers/mutators.py
------> call mutate /examples/grayscott/maps/GrayScottParameterMap.py
-------> call add_gaussian_noise /adtool/wrappers/mutators.py
----> call map /examples/grayscott/maps/GrayScottParameterMap.py
---> call read_last_discovery /adtool/explorers/IMGEPExplorer.py
---> call save /adtool/ExperimentPipeline.py
# Third iteration
---> call map /examples/grayscott/systems/GrayScott.py
----> call update /examples/grayscott/systems/GrayScott.py
---> call render /examples/grayscott/systems/GrayScott.py
---> call map /adtool/explorers/IMGEPExplorer.py
----> call observe_results /adtool/explorers/IMGEPExplorer.py
-----> call map /examples/grayscott/maps/GrayScottStatistics.py
----> call map /adtool/wrappers/SaveWrapper.py
----> call suggest_trial /adtool/explorers/IMGEPExplorer.py
-----> call sample /examples/grayscott/maps/GrayScottStatistics.py
-----> call call_mutate_method /adtool/wrappers/mutators.py
------> call mutate /examples/grayscott/maps/GrayScottParameterMap.py
-------> call add_gaussian_noise /adtool/wrappers/mutators.py
----> call map /examples/grayscott/maps/GrayScottParameterMap.py
---> call read_last_discovery /adtool/explorers/IMGEPExplorer.py
---> call save /adtool/ExperimentPipeline.py
...