Skip to content
Snippets Groups Projects
Commit d32786b9 authored by Oliver Sander's avatar Oliver Sander Committed by sander@PCPOOL.MI.FU-BERLIN.DE
Browse files

Dune::Array --> std::vector

[[Imported from SVN: r1470]]
parent fb12a894
No related branches found
No related tags found
No related merge requests found
......@@ -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_;
......
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