changed: remove SET_TAG_PROP macro usage

This commit is contained in:
Arne Morten Kvarving
2020-08-27 11:38:38 +02:00
parent 3b21a8a481
commit 9a000c6d07
4 changed files with 24 additions and 6 deletions

View File

@@ -105,7 +105,10 @@ namespace Opm {
// struct LinearSolverBackend<TypeTag, TTag::EclFlowProblemSimple> {
// using type = Opm::ISTLSolverEbos<TypeTag>;
// };
//SET_TAG_PROP(EclFlowProblemSimple, LinearSolverSplice, ParallelBiCGStabLinearSolver);
// template<class TypeTag>
// struct LinearSolverSplice<TypeTag, TTag::EclFlowProblemSimple> {
// using type = TTag::ParallelBiCGStabLinearSolver;
// };
// template<class TypeTag>
// struct LinearSolverBackend<TypeTag, TTag::EclFlowProblemSimple> {
// using type = Opm::Linear::ParallelBiCGStabSolverBackend<TypeTag>; // not work
@@ -114,7 +117,10 @@ namespace Opm {
// struct LinearSolverBackend<TypeTag, TTag::EclFlowProblemSimple> {
// using type = Opm::Linear::SuperLUBackend<TypeTag>; // not work
// };
//SET_TAG_PROP(EclFlowProblem, FluidState, Opm::BlackOilFluidState);
// template<class TypeTag>
// struct FluidState<TypeTag, TTag::EclFlowProblem> {
// using type = Opm::BlackOilFluidState;
// };
template<class TypeTag>
struct LinearSolverBackend<TypeTag, TTag::EclFlowProblemSimple> {