From d30ba51820ba8196f1a3a64d6c632d35e8c07713 Mon Sep 17 00:00:00 2001 From: Brett Laptop Date: Tue, 27 Aug 2024 19:57:37 -0400 Subject: [PATCH] pi --- CMakeLists.txt | 2 +- examples/rice_classification.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 66e8ded..524a9df 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.25) -project(blt-gp VERSION 0.1.28) +project(blt-gp VERSION 0.1.29) include(CTest) diff --git a/examples/rice_classification.cpp b/examples/rice_classification.cpp index fcd9c08..57723ee 100644 --- a/examples/rice_classification.cpp +++ b/examples/rice_classification.cpp @@ -187,7 +187,7 @@ int main(int argc, const char** argv) op_minor_axis_length, op_eccentricity, op_convex_area, op_extent)); BLT_DEBUG("Generate Initial Population"); - auto sel = blt::gp::select_tournament_t{}; + auto sel = blt::gp::select_fitness_proportionate_t{}; program.generate_population(type_system.get_type().id(), fitness_function, sel, sel, sel); BLT_DEBUG("Begin Generation Loop");