Skip to content
Snippets Groups Projects
Commit 1d8e33e8 authored by Carsten Gräser's avatar Carsten Gräser
Browse files

[cleanup] Replace Dune::Solvers::Hybrid by Dune::Hybrid

parent 57787d42
No related branches found
No related tags found
No related merge requests found
Pipeline #
......@@ -15,12 +15,12 @@
#include <dune/common/fmatrix.hh>
#include <dune/common/diagonalmatrix.hh>
#include <dune/common/indices.hh>
#include <dune/common/hybridutilities.hh>
#include <dune/istl/scaledidmatrix.hh>
#include <dune/istl/bcrsmatrix.hh>
#include <dune/istl/bvector.hh>
#include <dune/solvers/common/algorithm.hh>
#include <dune/solvers/operators/sumoperator.hh>
/** \brief Various tools for working with istl vectors of arbitrary nesting depth
......@@ -32,7 +32,7 @@ struct GenericVector
template <class VectorType>
static void writeBinary(std::ostream& s, const VectorType& v)
{
Dune::Solvers::Hybrid::forEach(v, [&](auto&& vi) {
Dune::Hybrid::forEach(v, [&](auto&& vi) {
GenericVector::writeBinary(s, vi);
});
}
......@@ -51,7 +51,7 @@ struct GenericVector
template <class VectorType>
static void readBinary(std::istream& s, VectorType& v)
{
Dune::Solvers::Hybrid::forEach(v, [&](auto&& vi) {
Dune::Hybrid::forEach(v, [&](auto&& vi) {
GenericVector::readBinary(s, vi);
});
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment