-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathalgorithmConfiguration.json
56 lines (56 loc) · 1.26 KB
/
algorithmConfiguration.json
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
{
"generationSize": 300,
"cantChildren": 280,
"printBestOnEachGeneration": false,
"printEndingInformation": true,
"printBestFitnessEvolution": true,
"mutationMethods": [
{
"name": "singleGene",
"probability": 0.4
},
{
"name": "complete",
"probability": 0.1
}
],
"crossoverMethod": {
"name": "uniform",
"parameters": {
"exchangeProbability": 0.5
}
},
"parentSelectionMethods": {
"method1": {
"name": "elite"
}
},
"nextGenerationSelectionMethods": {
"method1": {
"name": "elite"
},
"method2": {
"name": "boltzmann",
"parameters": {
"T0": 0.5,
"Tc": 0.2
}
},
"method1Proportion": 1,
"fillMethod": "all"
},
"finishCriteria": [
{
"name": "time",
"parameters": {
"durationSeconds": 15
}
},
{
"name": "content",
"parameters": {
"generationsWithoutImprovementToFinish": 20
}
}
]
}