diff --git a/CMakeLists.txt b/CMakeLists.txt index c4f80f5..14d5e81 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -27,7 +27,7 @@ macro(compile_options target_name) sanitizers(${target_name}) endmacro() -project(blt-gp VERSION 0.3.5) +project(blt-gp VERSION 0.3.6) include(CTest) diff --git a/tests/symbolic_regression_test.cpp b/tests/symbolic_regression_test.cpp index 8f701ea..0780683 100644 --- a/tests/symbolic_regression_test.cpp +++ b/tests/symbolic_regression_test.cpp @@ -106,6 +106,8 @@ void do_run() { for (const auto reproduction_chance : reproduction_chances) { + if (crossover_chance == 0 && mutation_chance == 0 && reproduction_chance == 0) + continue; for (const auto elite_amount : elite_amounts) { for (const auto population_sizes : population_sizes)