changed: remove embedded 'parameters' namespace in ParamGroup

inconsistent and unnecessary.

this is purely a cosmetic change, the only exception was a function with
the generic name 'split', which was renamed to splitParam to avoid confusion.
This commit is contained in:
Arne Morten Kvarving
2017-04-28 15:34:11 +02:00
parent f011efa4ad
commit 629ce29a2f
2 changed files with 2 additions and 2 deletions
@@ -45,7 +45,7 @@ namespace Opm
const std::vector<double>& porevol,
const double* gravity,
const std::vector<double>& half_trans,
const parameter::ParameterGroup& param)
const ParameterGroup& param)
: fluid_(props),
model_(fluid_, grid, porevol, gravity, param.getDefault("guess_old_solution", false)),
tsolver_(model_),
@@ -61,7 +61,7 @@ namespace Opm
const std::vector<double>& porevol,
const double* gravity,
const std::vector<double>& half_trans,
const parameter::ParameterGroup& param);
const ParameterGroup& param);
virtual ~TransportSolverTwophaseImplicit();