-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmutation_config.json
More file actions
47 lines (47 loc) · 1011 Bytes
/
mutation_config.json
File metadata and controls
47 lines (47 loc) · 1011 Bytes
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
{
"conservative": {
"description": "Minimal code changes with high confidence fixes",
"blocks_to_mutate": {
"1": 0.70,
"2": 0.25,
"3": 0.05
},
"mutation_size": {
"type": "linear",
"min_percent": 3,
"max_percent": 15,
"start_probability": 0.70,
"end_probability": 0.10
}
},
"medium": {
"description": "Balanced approach with moderate mutations",
"blocks_to_mutate": {
"1": 0.50,
"2": 0.35,
"3": 0.15
},
"mutation_size": {
"type": "linear",
"min_percent": 4,
"max_percent": 20,
"start_probability": 0.60,
"end_probability": 0.05
}
},
"crazy": {
"description": "Aggressive mutations to stress-test the fixer",
"blocks_to_mutate": {
"1": 0.20,
"2": 0.40,
"3": 0.40
},
"mutation_size": {
"type": "linear",
"min_percent": 5,
"max_percent": 25,
"start_probability": 0.50,
"end_probability": 0.10
}
}
}