From 577f3d613c2081637bc2565ab19c64f7be60d890 Mon Sep 17 00:00:00 2001 From: Brett Date: Mon, 31 Mar 2025 17:47:58 -0400 Subject: [PATCH] silly --- CMakeLists.txt | 2 +- examples/symbolic_regression.h | 2 +- include/blt/gp/allocator.h | 2 +- include/blt/gp/fwdecl.h | 2 +- include/blt/gp/selection.h | 6 +++--- include/blt/gp/stack.h | 2 +- lib/blt | 2 +- src/generators.cpp | 2 +- src/tree.cpp | 4 ++-- src/util/trackers.cpp | 2 +- 10 files changed, 13 insertions(+), 13 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e075be8..c4b7d1d 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.33) +project(blt-gp VERSION 0.3.34) include(CTest) diff --git a/examples/symbolic_regression.h b/examples/symbolic_regression.h index 232c379..4fe9e21 100644 --- a/examples/symbolic_regression.h +++ b/examples/symbolic_regression.h @@ -20,7 +20,7 @@ #define BLT_GP_EXAMPLE_SYMBOLIC_REGRESSION_H #include "examples_base.h" -#include +#include #include #include diff --git a/include/blt/gp/allocator.h b/include/blt/gp/allocator.h index 5e9a3b2..15f78d8 100644 --- a/include/blt/gp/allocator.h +++ b/include/blt/gp/allocator.h @@ -20,7 +20,7 @@ #define BLT_GP_ALLOCATOR_H #include -#include +#include #include #include #include diff --git a/include/blt/gp/fwdecl.h b/include/blt/gp/fwdecl.h index e13bec7..66cef46 100644 --- a/include/blt/gp/fwdecl.h +++ b/include/blt/gp/fwdecl.h @@ -20,7 +20,7 @@ #define BLT_GP_FWDECL_H #include -#include +#include #include #include #include diff --git a/include/blt/gp/selection.h b/include/blt/gp/selection.h index 460535b..2ad45f9 100644 --- a/include/blt/gp/selection.h +++ b/include/blt/gp/selection.h @@ -61,16 +61,16 @@ namespace blt::gp { for (size_t i = 0; i < config.elites; i++) { - if (ind.value.fitness.adjusted_fitness >= values[i].second) + if (ind.second.fitness.adjusted_fitness >= values[i].second) { bool doesnt_contain = true; for (blt::size_t j = 0; j < config.elites; j++) { - if (ind.index == values[j].first) + if (ind.first == values[j].first) doesnt_contain = false; } if (doesnt_contain) - values[i] = {ind.index, ind.value.fitness.adjusted_fitness}; + values[i] = {ind.first, ind.second.fitness.adjusted_fitness}; break; } } diff --git a/include/blt/gp/stack.h b/include/blt/gp/stack.h index ef046cc..5e0d6cb 100644 --- a/include/blt/gp/stack.h +++ b/include/blt/gp/stack.h @@ -22,7 +22,7 @@ #include #include #include -#include +#include #include #include #include diff --git a/lib/blt b/lib/blt index baa5952..9a05c86 160000 --- a/lib/blt +++ b/lib/blt @@ -1 +1 @@ -Subproject commit baa5952666594ce0d07a2b013e46c4bc343ba164 +Subproject commit 9a05c86b02c9c45c2b384c531007416148ec4b56 diff --git a/src/generators.cpp b/src/generators.cpp index 718398a..e089688 100644 --- a/src/generators.cpp +++ b/src/generators.cpp @@ -17,7 +17,7 @@ */ #include #include -#include +#include #include namespace blt::gp diff --git a/src/tree.cpp b/src/tree.cpp index f45a6a7..e866e82 100644 --- a/src/tree.cpp +++ b/src/tree.cpp @@ -18,7 +18,7 @@ #include #include #include -#include +#include #include #include @@ -544,7 +544,7 @@ namespace blt::gp if (bytes_expected != bytes_size) { - BLT_ERROR_STREAM << "Stack state: " << values.size() << "\n"; + BLT_ERROR("Stack state: {}", values.size()); BLT_ERROR("Child tree bytes %ld vs expected %ld, difference: %ld", bytes_size, bytes_expected, static_cast(bytes_expected) - static_cast(bytes_size)); BLT_ERROR("Amount of bytes in stack doesn't match the number of bytes expected for the operations"); diff --git a/src/util/trackers.cpp b/src/util/trackers.cpp index c548c55..c986d29 100644 --- a/src/util/trackers.cpp +++ b/src/util/trackers.cpp @@ -16,7 +16,7 @@ * along with this program. If not, see . */ #include -#include +#include #include "blt/format/format.h" #include