Skip to content

Commit

Permalink
MueLu BoundaryDetection: Do not overwrite previously detected boundar…
Browse files Browse the repository at this point in the history
…y nodes

Signed-off-by: Christian Glusa <[email protected]>
  • Loading branch information
cgcgcg committed Nov 26, 2024
1 parent b234230 commit dfbf4cf
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -129,15 +129,11 @@ class VectorDirichletFunctor {
}
} else {
if (!rowIsDirichlet) {
boundaryNodes(rblid) = false;
return;
}
}
}
if constexpr (useGreedyDirichlet)
boundaryNodes(rblid) = false;
else
boundaryNodes(rblid) = true;
boundaryNodes(rblid) = true;
}
};

Expand Down

0 comments on commit dfbf4cf

Please sign in to comment.