Skip to content

Commit

Permalink
PABLO: fix computation of "compact families" partitioning
Browse files Browse the repository at this point in the history
  • Loading branch information
andrea-iob committed Feb 5, 2021
1 parent e13fa55 commit 490648c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/PABLO/ParaTree.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4817,7 +4817,7 @@ namespace bitpit {
i = istart;
rest = m_octree.m_octants[i].getLogicalX()%Dh + m_octree.m_octants[i].getLogicalY()%Dh;
while(rest!=0){
if (i==nocts){
if (i==nocts-1){
i = istart + nocts;
break;
}
Expand Down

0 comments on commit 490648c

Please sign in to comment.