-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnet4.cfg
More file actions
22 lines (20 loc) · 1.13 KB
/
Copy pathnet4.cfg
File metadata and controls
22 lines (20 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# net4.cfg
# Config for network4
# File names
data_file = network4 # default network dataset file
log_file = output4.log # default log file location
solution_file = solution4.log # default solution location
# Parameters
random = 1 # to use clock seed use 1, to use a set seed use 0
runs = 3 # number of evals to run
penalty = 1 # default penalty coefficient
mu = 100 # population size
lambda = 50 # number of possible children
evals = 10000 # number of evals for convergence or max evals
mutation_probability = 0.08 # must be in the set [0,1]
selection_type = truncation # either 'truncation' or 'tournament'
tournament_size = 4 # size of the tournament
num_parents = 50 # possible number of parents, can't be more than mu
recombination = n-point # either 'n-point' or 'uniform'
num_crossovers = 20 # specifies the number of crossovers
termination_type = evals # either 'evals' or 'convergence'