remove broken state from test

dev-func-drop
Brett 2025-01-13 18:05:29 -05:00
parent 0cf5450eb7
commit 99b784835b
2 changed files with 3 additions and 1 deletions

View File

@ -27,7 +27,7 @@ macro(compile_options target_name)
sanitizers(${target_name}) sanitizers(${target_name})
endmacro() endmacro()
project(blt-gp VERSION 0.3.5) project(blt-gp VERSION 0.3.6)
include(CTest) include(CTest)

View File

@ -106,6 +106,8 @@ void do_run()
{ {
for (const auto reproduction_chance : reproduction_chances) 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 elite_amount : elite_amounts)
{ {
for (const auto population_sizes : population_sizes) for (const auto population_sizes : population_sizes)