fixed: EnableDebuggingChecks is a property, not a parameter

This commit is contained in:
Arne Morten Kvarving
2024-08-14 14:05:43 +02:00
parent 9141f2c2d5
commit fdcc9a0fb2
4 changed files with 14 additions and 18 deletions

View File

@@ -142,15 +142,11 @@ template<class TypeTag>
struct LinearSolverSplice<TypeTag, TTag::FlowProblem>
{ using type = TTag::FlowIstlSolver; };
} // namespace Opm::Properties
namespace Opm::Parameters {
template<class TypeTag>
struct EnableDebuggingChecks<TypeTag, Properties::TTag::FlowProblem>
struct EnableDebuggingChecks<TypeTag, TTag::FlowProblem>
{ static constexpr bool value = false; };
}
} // namespace Opm::Properties
namespace Opm {