mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
flow_ebos: do no longer use the generic FlowMain class
this will allow to boil the code down.
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user