Skip to content
Snippets Groups Projects
Commit 2aabcee3 authored by Peter Bastian's avatar Peter Bastian
Browse files

DO interpolate dirichlet nodes

[[Imported from SVN: r4454]]
parent a66e92c4
No related branches found
No related tags found
No related merge requests found
......@@ -286,28 +286,6 @@ namespace Dune
treated[indexi] = true;
}
}
// eliminate interpolation in rows with essential boundary conditions
// rowiterator endi=(*A).end();
// for (rowiterator i=(*A).begin(); i!=endi; ++i)
// {
// int indexi = i.index();
// // go through all components at this vertex
// for (int compi=0; compi<m; compi++)
// if ((*skipflag[compi])[indexi])
// {
// // we have to set this row to zero
// coliterator colend = (*i).end();
// for (coliterator colit=(*i).begin(); colit!=colend; ++colit)
// for (int compj=0; compj<m; compj++)
// (*colit)[compi][compj] = 0;
// }
// }
// printmatrix(std::cout,*A,"prolongation matrix","row",9,1);
}
// return the skip flag
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment