From c228c6553ddcaeee21ef3b8d19b1802d6f96895f Mon Sep 17 00:00:00 2001 From: Oliver Sander <oliver.sander@tu-dresden.de> Date: Sun, 8 Jan 2017 19:31:35 +0100 Subject: [PATCH] Make the step_ member public Because, in the dune-solvers world, you currently need to access it directly to call 'setProblem' on it. That's not particularly pretty, but it's the way it is. A general improvement of dune-solvers here is welcome. --- dune/tnnmg/linearsolvers/fixedsteplinearsolver.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dune/tnnmg/linearsolvers/fixedsteplinearsolver.hh b/dune/tnnmg/linearsolvers/fixedsteplinearsolver.hh index 6dd1be0..0cbef9e 100644 --- a/dune/tnnmg/linearsolvers/fixedsteplinearsolver.hh +++ b/dune/tnnmg/linearsolvers/fixedsteplinearsolver.hh @@ -63,8 +63,8 @@ public: step_->iterate(); } -private: std::shared_ptr<Step> step_; +private: unsigned int noOfSteps_; BitVector ignore_; }; -- GitLab