Skip to content
Snippets Groups Projects
Commit 83d41be0 authored by Robert K's avatar Robert K
Browse files

[cleanup] switch to KrylovInverseOperator implementation.

parent ffe2ebfe
No related branches found
No related tags found
1 merge request!4Latest features added to dune-fem-dg.
......@@ -435,7 +435,7 @@ namespace Fem
template<class DSpace, class RSpace = DSpace>
using LinearOperatorType = Dune::Fem::SparseRowLinearOperator< DiscreteFunctionType<DSpace>, DiscreteFunctionType<RSpace> >;
template<class DSpace, class RSpace = DSpace>
using LinearInverseOperatorType = Dune::Fem::CGInverseOperator< DiscreteFunctionType<DSpace > >;
using LinearInverseOperatorType = Dune::Fem::CgInverseOperator< DiscreteFunctionType<DSpace > >;
};
template <bool symmetric>
......@@ -577,8 +577,8 @@ namespace Fem
template<class DSpace, class RSpace = DSpace>
using LinearInverseOperatorType
= typename std::conditional<symmetric,
Dune::Fem::CGInverseOperator< DiscreteFunctionType<DSpace> >,
Dune::Fem::ParDGGeneralizedMinResInverseOperator< DiscreteFunctionType<DSpace> > >::type;
Dune::Fem::CgInverseOperator< DiscreteFunctionType<DSpace> >,
Dune::Fem::KrylovInverseOperator< DiscreteFunctionType<DSpace> > >::type;
};
template <bool symmetric>
......
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