From d32786b9991509025d5d62730d066583b1455af8 Mon Sep 17 00:00:00 2001 From: Oliver Sander <sander@igpm.rwth-aachen.de> Date: Fri, 3 Aug 2007 13:57:22 +0000 Subject: [PATCH] Dune::Array --> std::vector [[Imported from SVN: r1470]] --- src/rodsolver.hh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/rodsolver.hh b/src/rodsolver.hh index 006504b4..a2a11dd9 100644 --- a/src/rodsolver.hh +++ b/src/rodsolver.hh @@ -98,11 +98,11 @@ protected: Dune::IterativeSolver<MatrixType, CorrectionType>* mmgSolver_; /** \brief The hierarchy of trust-region obstacles */ - Dune::Array<std::vector<BoxConstraint<blocksize> > > trustRegionObstacles_; + std::vector<std::vector<BoxConstraint<blocksize> > > trustRegionObstacles_; /** \brief Dummy fields containing 'true' everywhere. The multigrid step expects them :-( */ - Dune::Array<Dune::BitField> hasObstacle_; + std::vector<Dune::BitField> hasObstacle_; /** \brief The Dirichlet nodes on all levels */ std::vector<Dune::BitField> dirichletNodes_; -- GitLab