Skip to content
Snippets Groups Projects
Commit dac01ef7 authored by Arne Morten Kvarving's avatar Arne Morten Kvarving Committed by Markus Blatt
Browse files

Fixes copying smoothing steps in copy constructor of TwoLevelMethod.

parent 11549c1e
No related branches found
No related tags found
No related merge requests found
......@@ -398,7 +398,7 @@ public:
TwoLevelMethod(const TwoLevelMethod& other)
: operator_(other.operator_), coarseSolver_(other.coarseSolver_),
smoother_(other.smoother_), policy_(other.policy_->clone()),
preSteps_(preSteps_), postSteps_(postSteps_)
preSteps_(other.preSteps_), postSteps_(other.postSteps_)
{}
~TwoLevelMethod()
......
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