malloc is taking a good amount
parent
858a7f5cfe
commit
76de033fe8
|
@ -1,5 +1,5 @@
|
|||
cmake_minimum_required(VERSION 3.25)
|
||||
project(blt-gp VERSION 0.1.8)
|
||||
project(blt-gp VERSION 0.1.9)
|
||||
|
||||
include(CTest)
|
||||
|
||||
|
|
|
@ -31,6 +31,8 @@ struct context
|
|||
|
||||
std::array<context, 200> fitness_cases;
|
||||
|
||||
blt::gp::mutation_t mut;
|
||||
|
||||
blt::gp::prog_config_t config = blt::gp::prog_config_t()
|
||||
.set_initial_min_tree_size(2)
|
||||
.set_initial_max_tree_size(6)
|
||||
|
@ -39,7 +41,7 @@ blt::gp::prog_config_t config = blt::gp::prog_config_t()
|
|||
.set_mutation_chance(0.1)
|
||||
.set_reproduction_chance(0)
|
||||
.set_max_generations(50)
|
||||
.set_pop_size(50000)
|
||||
.set_pop_size(5000)
|
||||
.set_thread_count(0);
|
||||
|
||||
blt::gp::type_provider type_system;
|
||||
|
|
Loading…
Reference in New Issue