flow_ebos: do no longer use the generic FlowMain class

this will allow to boil the code down.
This commit is contained in:
Andreas Lauser
2016-07-12 19:01:14 +02:00
parent 50ebb66041
commit 3027e1f39d
3 changed files with 66 additions and 7 deletions

View File

@@ -27,16 +27,12 @@
#include <dune/grid/CpGrid.hpp>
#include <opm/autodiff/SimulatorFullyImplicitBlackoilEbos.hpp>
#include <opm/autodiff/FlowMain.hpp>
#include <opm/autodiff/FlowMainEbos.hpp>
// ----------------- Main program -----------------
int
main(int argc, char** argv)
int main(int argc, char** argv)
{
typedef Dune::CpGrid Grid;
typedef Opm::SimulatorFullyImplicitBlackoilEbos<Grid> Simulator;
Opm::FlowMain<Grid, Simulator> mainfunc;
Opm::FlowMainEbos mainfunc;
return mainfunc.execute(argc, argv);
}