Skip to content

Commit

Permalink
check continuation in dual-traversal
Browse files Browse the repository at this point in the history
  • Loading branch information
sekelle committed Sep 15, 2024
1 parent 44fb29a commit d0001fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion domain/include/cstone/traversal/traversal.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ void dualTraversal(const TreeType& octree, TreeNodeIndex a, TreeNodeIndex b, MAC

if (octree.isLeaf(a) && octree.isLeaf(b))
{
p2p(a, b);
if (continuation(a, b)) { p2p(a, b); }
return;
}

Expand Down

0 comments on commit d0001fb

Please sign in to comment.