From d5653d9ca2ab7f753c7bfba2305f1d51ec1b20f1 Mon Sep 17 00:00:00 2001 From: Paul Egberts Date: Sun, 1 Aug 2021 18:11:56 +0200 Subject: [PATCH] removed exit failure for gas-water system --- opm/simulators/flow/Main.hpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/opm/simulators/flow/Main.hpp b/opm/simulators/flow/Main.hpp index 28f628484..51ba29f42 100644 --- a/opm/simulators/flow/Main.hpp +++ b/opm/simulators/flow/Main.hpp @@ -224,9 +224,6 @@ namespace Opm } // gas-water else if ( phases.active( Phase::GAS ) && phases.active( Phase::WATER ) ) { - if (outputCout_) - std::cerr << "Gas-water systems are not yet supported" << std::endl; - return EXIT_FAILURE; flowEbosGasWaterSetDeck(setupTime_, std::move(deck_), std::move(eclipseState_), std::move(schedule_), std::move(summaryConfig_)); return flowEbosGasWaterMain(argc_, argv_, outputCout_, outputFiles_); }