cosmetics

This commit is contained in:
Arne Morten Kvarving
2024-07-01 08:58:28 +02:00
parent cea13e4b96
commit 23e9bc5ebc
29 changed files with 200 additions and 72 deletions

View File

@@ -37,12 +37,16 @@ namespace Opm::Properties {
// Create new type tags
namespace TTag {
struct OutflowProblem { using InheritsFrom = std::tuple<OutflowBaseProblem, PvsModel>; };
struct OutflowProblem
{ using InheritsFrom = std::tuple<OutflowBaseProblem, PvsModel>; };
} // end namespace TTag
// Verbosity of the PVS model (0=silent, 1=medium, 2=chatty)
template<class TypeTag>
struct PvsVerbosity<TypeTag, TTag::OutflowProblem> { static constexpr int value = 1; };
struct PvsVerbosity<TypeTag, TTag::OutflowProblem>
{ static constexpr int value = 1; };
} // namespace Opm::Properties