-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathMakefile
55 lines (46 loc) · 1.58 KB
/
Makefile
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
all:
cd java && make
cd python && make
depth1:
mkdir -p results/depth_1
cd java && make completeSpaceDepth1
cd java && make completeMatricesDepth1
cd python && make completeMatricesDepth1
cd java && make sampleOneStepProbabilitiesDepth1
cd python && make writeSteadyStateDepth1
cd python && make makeCorrelationTableDepth1
cd python && make makeGridPlotsDepth1
cd python && make compareTPCalculatedVSampledDepth1
depth2:
mkdir -p results/depth_2
cd java && make completeSpaceDepth2
cd java && make completeMatricesDepth2
cd python && make completeMatricesDepth2
cd java && make sampleOneStepProbabilitiesDepth2
cd python && make writeSteadyStateDepth2
cd python && make makeCorrelationTableDepth2
cd python && make makeGridPlotsDepth2
cd python && make compareTPCalculatedVSampledDepth2
ga_length4:
mkdir -p results/ga_length_4
cd python && make completeMatricesGALength4
cd python && make writeSteadyStateGALength4
cd python && make makeCorrelationTableGALength4
cd python && make makeGridPlotsGALength4
completeMatricesDepth1:
cd java && make completeMatricesDepth1
cd python && make completeMatricesDepth1
completeMatricesDepth2:
cd java && make completeMatricesDepth2
cd python && make completeMatricesDepth2
uniformSampleMatricesDepth6:
cd java && make uniformSampleDepth6
cd python && make uniformSampleDepth6
rwSampleMatricesDepth6:
cd java && make rwSampleDepth6
cd python && make rwSampleDepth6
mhSampleMatricesDepth6:
cd java && make mhSampleDepth6
cd python && make mhSampleDepth6
sampleOneStepProbabilities:
cd java && make sampleOneStepProbabilitiesDepth1