From c1e1b0ee70369a7d19c8a693987954e3eabb9bd7 Mon Sep 17 00:00:00 2001 From: Arne Morten Kvarving Date: Wed, 2 Aug 2023 14:31:50 +0200 Subject: [PATCH] eclgenericproblem: remove unused methods --- ebos/eclgenericproblem.hh | 13 ------------- ebos/eclproblem.hh | 2 -- 2 files changed, 15 deletions(-) diff --git a/ebos/eclgenericproblem.hh b/ebos/eclgenericproblem.hh index f22803c4e..cc665d394 100644 --- a/ebos/eclgenericproblem.hh +++ b/ebos/eclgenericproblem.hh @@ -263,19 +263,6 @@ public: */ Scalar porosity(unsigned globalSpaceIdx, unsigned timeIdx) const; - /*! - * \brief Returns the minimum allowable size of a time step. - */ - Scalar minTimeStepSize() const - { return minTimeStepSize_; } - - /*! - * \brief Returns the maximum number of subsequent failures for the time integration - * before giving up. - */ - unsigned maxTimeIntegrationFailures() const - { return maxFails_; } - bool vapparsActive(int episodeIdx) const; int numPressurePointsEquil() const diff --git a/ebos/eclproblem.hh b/ebos/eclproblem.hh index 28ec35973..5e0c579c9 100644 --- a/ebos/eclproblem.hh +++ b/ebos/eclproblem.hh @@ -190,8 +190,6 @@ public: using EclGenericProblem::helpPreamble; using EclGenericProblem::shouldWriteOutput; using EclGenericProblem::shouldWriteRestartFile; - using EclGenericProblem::maxTimeIntegrationFailures; - using EclGenericProblem::minTimeStepSize; using EclGenericProblem::rockCompressibility; using EclGenericProblem::rockReferencePressure; using EclGenericProblem::porosity;