move PvsVerbosity to TypeTag-free parameter system

This commit is contained in:
Arne Morten Kvarving
2024-07-05 17:49:51 +02:00
parent cbbf1fcc2e
commit db62f4d936
3 changed files with 3 additions and 27 deletions

View File

@@ -48,15 +48,6 @@ struct ObstacleProblem
} // namespace Opm::Properties
namespace Opm::Parameters {
// Verbosity of the PVS model (0=silent, 1=medium, 2=chatty)
template<class TypeTag>
struct PvsVerbosity<TypeTag, Properties::TTag::ObstacleProblem>
{ static constexpr int value = 1; };
}
int main(int argc, char **argv)
{
using ProblemTypeTag = Opm::Properties::TTag::ObstacleProblem;