2017-08-23 08:58:55 -05:00
|
|
|
/*
|
|
|
|
Copyright 2013, 2014, 2015 SINTEF ICT, Applied Mathematics.
|
|
|
|
Copyright 2014 Dr. Blatt - HPC-Simulation-Software & Services
|
|
|
|
Copyright 2015, 2017 IRIS AS
|
|
|
|
|
|
|
|
This file is part of the Open Porous Media project (OPM).
|
|
|
|
|
|
|
|
OPM is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
OPM is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with OPM. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2020-04-04 17:39:59 -05:00
|
|
|
|
2020-04-16 04:35:01 -05:00
|
|
|
#include "config.h"
|
2020-04-04 17:39:59 -05:00
|
|
|
|
|
|
|
#include <opm/simulators/flow/Main.hpp>
|
2020-02-07 07:36:22 -06:00
|
|
|
|
2017-08-23 08:58:55 -05:00
|
|
|
int main(int argc, char** argv)
|
|
|
|
{
|
2020-04-16 04:35:01 -05:00
|
|
|
auto mainObject = Opm::Main(argc, argv);
|
|
|
|
return mainObject.runDynamic();
|
2017-08-23 08:58:55 -05:00
|
|
|
}
|
2020-04-03 07:53:45 -05:00
|
|
|
|