Fixed: Undo the fix in e69c100b17

as this apparently causes the issue OPM/IFEM#347.
Revisit this later for a proper fix.
This commit is contained in:
Knut Morten Okstad 2019-03-26 17:07:27 +01:00
parent 633cf80ff8
commit 94389163e5

View File

@ -383,7 +383,7 @@ void ASMu2D::extendRefinementDomain (IntSet& refineIndices,
for (int edgeNode : bndry1[edge]) for (int edgeNode : bndry1[edge])
if (edgeNode-1 == j) if (edgeNode-1 == j)
{ {
IntVec secondary = this->getOverlappingNodes(j); IntVec secondary = this->getOverlappingNodes(j, edge/2+1);
refineIndices.insert(secondary.begin(),secondary.end()); refineIndices.insert(secondary.begin(),secondary.end());
done_with_this_node = true; done_with_this_node = true;
break; break;