From 3cf2d319b6ff164c39edcb22f7ac21b20e25998a Mon Sep 17 00:00:00 2001 From: Brett Laptop Date: Wed, 28 Aug 2024 19:23:42 -0400 Subject: [PATCH] think it works now --- CMakeLists.txt | 2 +- examples/rice_classification.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index dacfcbe..37be487 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.25) -project(blt-gp VERSION 0.1.31) +project(blt-gp VERSION 0.1.32) include(CTest) diff --git a/examples/rice_classification.cpp b/examples/rice_classification.cpp index 9a7c48c..b15c07e 100644 --- a/examples/rice_classification.cpp +++ b/examples/rice_classification.cpp @@ -59,7 +59,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(500) + .set_pop_size(5000) .set_thread_count(0); blt::gp::type_provider type_system;