From a742164bedd31cac6d828032ee1a4a18c64d0cac Mon Sep 17 00:00:00 2001 From: Brett Laptop Date: Wed, 2 Apr 2025 21:09:18 -0400 Subject: [PATCH] clarafiy comment --- CMakeLists.txt | 2 +- include/blt/gp/program.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 76da0bf..95f4f43 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.4.3) +project(blt-gp VERSION 0.4.4) include(CTest) diff --git a/include/blt/gp/program.h b/include/blt/gp/program.h index a58ba11..4183cc9 100644 --- a/include/blt/gp/program.h +++ b/include/blt/gp/program.h @@ -410,7 +410,7 @@ namespace blt::gp * * Container must be concurrently accessible from multiple threads using operator[] * - * NOTE: 0 is considered the best, in terms of standardized fitness + * NOTE: the larger the adjusted fitness, the better. */ template void setup_generational_evaluation(FitnessFunc& fitness_function, Crossover& crossover_selection, Mutation& mutation_selection,