mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
changed: OutputDir parameter moved to Opm::Parameters namespace
This commit is contained in:
@@ -80,10 +80,6 @@ struct FlowProblem {
|
||||
};
|
||||
}
|
||||
template<class TypeTag>
|
||||
struct OutputDir<TypeTag, TTag::FlowProblem> {
|
||||
static constexpr auto value = "";
|
||||
};
|
||||
template<class TypeTag>
|
||||
struct EnableDebuggingChecks<TypeTag, TTag::FlowProblem> {
|
||||
static constexpr bool value = false;
|
||||
};
|
||||
@@ -152,6 +148,14 @@ struct LinearSolverSplice<TypeTag, TTag::FlowProblem> {
|
||||
|
||||
} // namespace Opm::Properties
|
||||
|
||||
namespace Opm::Parameters {
|
||||
|
||||
template<class TypeTag>
|
||||
struct OutputDir<TypeTag, Properties::TTag::FlowProblem>
|
||||
{ static constexpr auto value = ""; };
|
||||
|
||||
}
|
||||
|
||||
namespace Opm {
|
||||
|
||||
/// A model implementation for three-phase black oil.
|
||||
|
||||
Reference in New Issue
Block a user