remove the Flow prefixes of parameters only used by flow

this has been requested by [at]atgeirr.

Note: The FlowLinearSolverVerbosity, FlowNewtonMaxIterations and
FlowNewtonMinIterations parameters are still prefixed because they
clashes with parameters registered deeply within eWoms.
This commit is contained in:
Andreas Lauser
2018-08-06 15:59:35 +02:00
parent 9203b614e8
commit 43ac2e36c6
12 changed files with 268 additions and 268 deletions

View File

@@ -126,7 +126,7 @@ int main(int argc, char** argv)
bool outputCout = false;
if (mpiRank == 0)
outputCout = EWOMS_GET_PARAM(PreTypeTag, bool, FlowEnableTerminalOutput);
outputCout = EWOMS_GET_PARAM(PreTypeTag, bool, EnableTerminalOutput);
std::string deckFilename = EWOMS_GET_PARAM(PreTypeTag, std::string, EclDeckFileName);
typedef typename GET_PROP_TYPE(PreTypeTag, Vanguard) PreVanguard;