mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
changed: remove NEW_TYPE_TAG macro usage
This commit is contained in:
@@ -41,7 +41,9 @@ class ISTLSolverEbos;
|
||||
|
||||
namespace Opm::Properties {
|
||||
|
||||
NEW_TYPE_TAG(FlowIstlSolverParams);
|
||||
namespace TTag {
|
||||
struct FlowIstlSolverParams {};
|
||||
}
|
||||
|
||||
NEW_PROP_TAG(LinearSolverReduction);
|
||||
NEW_PROP_TAG(IluRelaxation);
|
||||
|
||||
@@ -56,7 +56,11 @@
|
||||
|
||||
namespace Opm::Properties {
|
||||
|
||||
NEW_TYPE_TAG(FlowIstlSolver, INHERITS_FROM(FlowIstlSolverParams));
|
||||
namespace TTag {
|
||||
struct FlowIstlSolver {
|
||||
using InheritsFrom = std::tuple<FlowIstlSolverParams>;
|
||||
};
|
||||
}
|
||||
|
||||
template <class TypeTag, class MyTypeTag>
|
||||
struct EclWellModel;
|
||||
|
||||
@@ -35,7 +35,11 @@
|
||||
|
||||
namespace Opm::Properties {
|
||||
|
||||
NEW_TYPE_TAG(FlowIstlSolverFlexible, INHERITS_FROM(FlowIstlSolverParams));
|
||||
namespace TTag {
|
||||
struct FlowIstlSolverFlexible {
|
||||
using InheritsFrom = std::tuple<FlowIstlSolverParams>;
|
||||
};
|
||||
}
|
||||
|
||||
} // namespace Opm::Properties
|
||||
|
||||
|
||||
Reference in New Issue
Block a user