mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-11-26 03:00:17 -06:00
addressing reviewing comments
This commit is contained in:
parent
2c75adf165
commit
4f51eb35d5
@ -758,10 +758,10 @@ list (APPEND PUBLIC_HEADER_FILES
|
||||
opm/simulators/flow/FlowMain.hpp
|
||||
opm/simulators/flow/FlowProblem.hpp
|
||||
opm/simulators/flow/FlowProblemBlackoil.hpp
|
||||
opm/simulators/flow/FlowProblemComp.hpp
|
||||
opm/simulators/flow/FlowProblemParameters.hpp
|
||||
opm/simulators/flow/FlowProblemBlackoilProperties.hpp
|
||||
opm/simulators/flow/FlowProblemComp.hpp
|
||||
opm/simulators/flow/FlowProblemCompProperties.hpp
|
||||
opm/simulators/flow/FlowProblemParameters.hpp
|
||||
opm/simulators/flow/FlowUtils.hpp
|
||||
opm/simulators/flow/FlowsData.hpp
|
||||
opm/simulators/flow/FlowThresholdPressure.hpp
|
||||
|
@ -128,8 +128,7 @@ namespace Opm {
|
||||
template <class TypeTag>
|
||||
class FlowExpProblem : public FlowProblemBlackoil<TypeTag> //, public FvBaseProblem<TypeTag>
|
||||
{
|
||||
typedef FlowProblemBlackoil<TypeTag> ParentType;
|
||||
using BaseType = ParentType; // GetPropType<TypeTag, Properties::BaseProblem>;
|
||||
using ParentType = FlowProblemBlackoil<TypeTag>;
|
||||
using Scalar = GetPropType<TypeTag, Properties::Scalar>;
|
||||
|
||||
public:
|
||||
@ -143,7 +142,7 @@ public:
|
||||
{
|
||||
// \Note: the SimulatorTimer does not carry any useful information, so PRT file (if it gets output) will contain wrong
|
||||
// timing information.
|
||||
BaseType::writeOutput(SimulatorTimer{}, verbose);
|
||||
ParentType::writeOutput(SimulatorTimer{}, verbose);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user