1#ifndef DUNE_COPASI_SOLVER_ISTL_CONCEPTS_HH
2#define DUNE_COPASI_SOLVER_ISTL_CONCEPTS_HH
4#include <dune/istl/solver.hh>
5#include <dune/istl/preconditioner.hh>
11concept LinearOperator = std::derived_from<O,Dune::LinearOperator<typename O::domain_type, typename O::range_type>>;
14concept AssembledLinearOperator = std::derived_from<O,Dune::AssembledLinearOperator<typename O::matrix_type, typename O::domain_type, typename O::range_type>>;
Definition: concepts.hh:14
Definition: concepts.hh:11
Definition: concepts.hh:8