diff --git a/CMakeLists.txt b/CMakeLists.txt index c0a6202..721f6a8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.25) -project(COSC-4P80-Assignment-1 VERSION 0.0.14) +project(COSC-4P80-Assignment-1 VERSION 0.0.15) option(ENABLE_ADDRSAN "Enable the address sanitizer" OFF) option(ENABLE_UBSAN "Enable the ub sanitizer" OFF) diff --git a/lib/blt b/lib/blt index a27651b..329eeb1 160000 --- a/lib/blt +++ b/lib/blt @@ -1 +1 @@ -Subproject commit a27651b21d1864d99a29f5d8985d6ae970e55ca1 +Subproject commit 329eeb174bcb66f3403255d324c6c8451246a131 diff --git a/src/main.cpp b/src/main.cpp index 217b173..aa7e61e 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -151,6 +151,11 @@ int main() for (const auto& [index, value] : blt::enumerate(part_c_2_inputs).rev().skip(3).rev()) BLT_TRACE_STREAM << index << " : " << value.vec_from_column_row() << '\n'; + BLT_TRACE(""); + + for (const auto& [index, value] : blt::enumerate(part_c_2_inputs).skip(2).take(3)) + BLT_TRACE_STREAM << index << " : " << value.vec_from_column_row() << '\n'; + // part_a(); // part_b();