-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOptions.toml
59 lines (48 loc) · 1.13 KB
/
Options.toml
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
# Specifies the file to mutate. Will be used, not modified.
inputfile = "input/gaster.tif"
# Can be omitted
# Specifies the output file
outputfile = "output/gaster.tif"
# How many times to execute the application
times = 300
# How many times to perform the mutations in a row
iterations = [1,10]
# Size of each chunk to mutate at a time
chunksize = [2730,2730000]
# Available mutations:
# Void, Chaos, Loops, Reverse,
# Shift, Shuffle, Swap
# Increase, Gradient, Multiply
# Compress
mutations = [
["Compress"],
#["Multiply", "Shift"],
#["Reverse"],
#["Shift"],
#["Void"],
#["Chaos"],
#["Swap"],
#["Loops"],
#["Shuffle"],
#["Increase"],
#["Gradient"]
]
# Additional options for special mutations.
# If more options are required, the application should inform you of what to do.
[LoopsConfig]
loops = [20]
chunksize = [700_000]
[IncreaseConfig]
increase_by = [1,5]
[GradientConfig]
accelerate_by = [1,2]
accelerate_in = [10_000, 100_000]
[MultiplyConfig]
multiply_by = [0.9]
# You can override options for mutations.
# Just use <MutationName>Config.
[ShiftConfig]
iterations = [1,1000]
chunksize = [1]
[CompressConfig]
compress_by = [2]