Skip to content

Commit

Permalink
Merge branch 'case33_separate_space_indexing'
Browse files Browse the repository at this point in the history
  • Loading branch information
attcs committed Jan 14, 2025
2 parents 5495d6c + 995caca commit 45745a4
Show file tree
Hide file tree
Showing 8 changed files with 823 additions and 687 deletions.
4 changes: 2 additions & 2 deletions adaptortests/test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -322,10 +322,10 @@ namespace

auto tree = TOrthoTreeA(points_span, 3, std::nullopt, 2);

auto const entityIDsInBFSActual = tree.CollectAllIdInBFS(tree.GetRootKey());
auto const entityIDsInBFSActual = tree.CollectAllIdInBFS(TOrthoTreeA::SI::GetRootKey());
auto const entityIDsInBFSExpected = std::vector<std::size_t>{ 7, 6, 5, 0, 2, 1, 8, 9, 3, 4 };

auto const entityIDsInDFSActual = tree.CollectAllIdInDFS(tree.GetRootKey());
auto const entityIDsInDFSActual = tree.CollectAllIdInDFS(TOrthoTreeA::SI::GetRootKey());
auto const entityIDsInDFSExpected = std::vector<std::size_t>{ 0, 1, 8, 9, 7, 6, 5, 2, 3, 4 };

auto const pointsInSearchBoxActual = tree.RangeSearch(searchBox, points);
Expand Down
5 changes: 5 additions & 0 deletions benchmarks/.clang-tidy
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Checks: '-*, bugprone-*, performance-*'
WarningsAsErrors: ''
HeaderFilterRegex: '.*'
FormatStyle: 'file'
User: x
Loading

0 comments on commit 45745a4

Please sign in to comment.