working on reversing

v1
Brett 2024-09-23 19:40:28 -04:00
parent 3bf43d0043
commit d802cff324
3 changed files with 8 additions and 2 deletions

View File

@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.25)
project(COSC-4P80-Assignment-1 VERSION 0.0.9)
project(COSC-4P80-Assignment-1 VERSION 0.0.10)
option(ENABLE_ADDRSAN "Enable the address sanitizer" OFF)
option(ENABLE_UBSAN "Enable the ub sanitizer" OFF)

@ -1 +1 @@
Subproject commit 96b071e337a7124d4afe2f633f11f9be6d965ac8
Subproject commit b944b936f40adb686f80c14bdaa5e972e6dc2d7a

View File

@ -127,6 +127,12 @@ int main()
blt::logging::setLogOutputFormat("\033[94m[${{TIME}}]${{RC}} \033[35m(${{FILE}}:${{LINE}})${{RC}} ${{LF}}${{CNR}}${{STR}}${{RC}}\n");
a1::test_math();
for (const auto& [index, value] : blt::enumerate(part_a_inputs))
BLT_TRACE_STREAM << index << " : " << value.vec_from_column_row() << '\n';
for (const auto& [index, value] : blt::enumerate(part_a_inputs).rev())
BLT_TRACE_STREAM << index << " : " << value.vec_from_column_row() << '\n';
part_a();
part_b();
part_c();