Skip to content
Snippets Groups Projects
Commit 8c9821a1 authored by Leo Schmidt's avatar Leo Schmidt Committed by lschmidt@PCPOOL.MI.FU-BERLIN.DE
Browse files

hierarchy of dirichlet nodes -> toplevel dirichlet nodes

[[Imported from SVN: r2949]]
parent 1cf8a188
No related branches found
No related tags found
No related merge requests found
......@@ -191,7 +191,7 @@ int main (int argc, char *argv[]) try
MonotoneMGStep<MatrixType, VectorType> multigridStep(maxlevel+1);
multigridStep.setMGType(mu, nu1, nu2);
multigridStep.dirichletNodes_ = &dirichletNodes;
multigridStep.dirichletNodes_ = &dirichletNodes[maxlevel];
multigridStep.basesolver_ = &baseSolver;
multigridStep.presmoother_ = &presmoother;
multigridStep.postsmoother_ = &postsmoother;
......
......@@ -124,7 +124,7 @@ int main (int argc, char *argv[]) try
MonotoneMGStep<MatrixType, VectorType> multigridStep(1);
multigridStep.setMGType(mu, nu1, nu2);
multigridStep.dirichletNodes_ = &dirichletNodes;
multigridStep.dirichletNodes_ = &dirichletNodes[0];
multigridStep.basesolver_ = &baseSolver;
multigridStep.presmoother_ = &presmoother;
multigridStep.postsmoother_ = &postsmoother;
......
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