diff options
author | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-07-04 14:33:54 +0200 |
---|---|---|
committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-07-04 14:33:54 +0200 |
commit | 96123e1331eabbfb0f5104857035df42096c7548 (patch) | |
tree | 2ba2d09a24effc5f2bbcbec9b920a43b1c2283ff /tests/iterator.cpp | |
parent | 1698e94edbfd90c178ca65a7d21679c390194e77 (diff) |
Improved geometry configuration setting
Diffstat (limited to 'tests/iterator.cpp')
-rw-r--r-- | tests/iterator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/iterator.cpp b/tests/iterator.cpp index 85037da..cd1cb7c 100644 --- a/tests/iterator.cpp +++ b/tests/iterator.cpp @@ -28,6 +28,6 @@ SAW_TEST("Iterate with Distance 1"){ lbm::iterate_over([](const saw::data<sch::FixedArray<sch::UInt64,2u>>& index){ std::cout<<"Index: "<<index.at({0u}).get()<<" "<<index.at({1u}).get()<<std::endl; - }, start, end, {1u}); + }, start, end, {{1u,1u}}); } } |