From 99b784835b9c4da5d583598c1272f4aa9b167012 Mon Sep 17 00:00:00 2001 From: Brett Laptop Date: Mon, 13 Jan 2025 18:05:29 -0500 Subject: [PATCH] remove broken state from test --- CMakeLists.txt | 2 +- tests/symbolic_regression_test.cpp | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) 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)