File tree Expand file tree Collapse file tree 1 file changed +0
-5
lines changed Expand file tree Collapse file tree 1 file changed +0
-5
lines changed Original file line number Diff line number Diff line change @@ -30,9 +30,6 @@ def fitness_func(solution, solution_idx):
30
30
sol_per_pop = 20 # Number of solutions in the population.
31
31
num_genes = len (function_inputs )
32
32
33
- init_range_low = - 2
34
- init_range_high = 5
35
-
36
33
parent_selection_type = "sss" # Type of parent selection.
37
34
keep_parents = - 1 # Number of parents to keep in the next population. -1 means keep all parents and 0 means keep nothing.
38
35
@@ -56,8 +53,6 @@ def callback_generation(ga_instance):
56
53
fitness_func = fitness_function ,
57
54
sol_per_pop = sol_per_pop ,
58
55
num_genes = num_genes ,
59
- init_range_low = init_range_low ,
60
- init_range_high = init_range_high ,
61
56
parent_selection_type = parent_selection_type ,
62
57
keep_parents = keep_parents ,
63
58
crossover_type = crossover_type ,
You can’t perform that action at this time.
0 commit comments