Skip to content
Snippets Groups Projects
Commit b00c6092 authored by Elias Pipping's avatar Elias Pipping Committed by Elias Pipping
Browse files

Handle ignored nodes

parent c8573579
No related branches found
No related tags found
No related merge requests found
......@@ -79,8 +79,11 @@ class MyBlockProblem<MyConvexProblemTypeTEMPLATE>::IterateObject {
void solveLocalProblem(
LocalVectorType& ui, int m,
const typename Dune::BitSetVector<block_size>::const_reference ignore) {
// Note: ignore is currently ignored (what's it used for anyway?)
{
// TODO: Does it make any sense to ignore single spatial dimensions here?
if (ignore.test(0))
return;
LocalMatrixType const* localA = NULL;
LocalVectorType localb(problem.f[m]);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment