silly
parent
31b91e2a1c
commit
25f6348323
|
@ -1,5 +1,5 @@
|
|||
cmake_minimum_required(VERSION 3.25)
|
||||
project(COSC-4P80-Assignment-1 VERSION 14.2.0)
|
||||
project(COSC-4P80-Assignment-1 VERSION 14.2.1)
|
||||
|
||||
option(ENABLE_ADDRSAN "Enable the address sanitizer" OFF)
|
||||
option(ENABLE_UBSAN "Enable the ub sanitizer" OFF)
|
||||
|
|
2
lib/blt
2
lib/blt
|
@ -1 +1 @@
|
|||
Subproject commit 0d13e9738f6f666faec827940948337cef644aba
|
||||
Subproject commit 0ecee088f6a633be523468843c55b925550ca691
|
11
src/main.cpp
11
src/main.cpp
|
@ -132,7 +132,7 @@ int main()
|
|||
BLT_TRACE_STREAM << index << " : " << value.vec_from_column_row() << '\n';
|
||||
|
||||
BLT_TRACE("");
|
||||
|
||||
|
||||
for (const auto& [index, value] : blt::enumerate(part_c_2_inputs).rev())
|
||||
BLT_TRACE_STREAM << index << " : " << value.vec_from_column_row() << '\n';
|
||||
|
||||
|
@ -156,9 +156,14 @@ int main()
|
|||
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';
|
||||
|
||||
for (const auto& [a, b] : blt::in_pairs(part_a_inputs, part_a_outputs))
|
||||
{
|
||||
BLT_TRACE_STREAM << a << " : " << b << "\n";
|
||||
}
|
||||
|
||||
// BLT_TRACE("%s", blt::type_string<blt::meta::lowest_iterator_category<std::bidirectional_iterator_tag, std::random_access_iterator_tag, std::input_iterator_tag>::type>().c_str());
|
||||
|
||||
|
||||
|
||||
|
||||
// part_a();
|
||||
// part_b();
|
||||
// part_c();
|
||||
|
|
Loading…
Reference in New Issue