From 36fb9b86ccd56699ca18bdff21f6d8f2a8b8c220 Mon Sep 17 00:00:00 2001 From: Brett Laptop Date: Tue, 29 Apr 2025 22:51:26 -0400 Subject: [PATCH] transfer should be based on silly thing that does the thing (move or swap based on index vs size) --- CMakeLists.txt | 2 +- src/transformers.cpp | 4 ---- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index eb5684b..ffa858a 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.5.24) +project(blt-gp VERSION 0.5.25) include(CTest) diff --git a/src/transformers.cpp b/src/transformers.cpp index db71a23..d85f55f 100644 --- a/src/transformers.cpp +++ b/src/transformers.cpp @@ -173,8 +173,6 @@ namespace blt::gp std::vector p1_reorder_types; std::vector p2_reorder_types; std::vector swap_types; - std::vector p1_to_p2_transfer_types; - std::vector p2_to_p1_transfer_types; void print_missing_types() { @@ -236,8 +234,6 @@ namespace blt::gp p1_reorder_types.clear(); p2_reorder_types.clear(); swap_types.clear(); - p1_to_p2_transfer_types.clear(); - p2_to_p1_transfer_types.clear(); for (auto& [id, v] : missing_p1_types) v.clear(); for (auto& [id, v] : missing_p2_types)