diff --git a/Applications/Python/ogs.simulator/ogs_python_module.cpp b/Applications/Python/ogs.simulator/ogs_python_module.cpp index ab4103c7c6579c210fc7e9aa095dd9ac73c0d81c..bdbaba4f3ed934c75c7cb1b5d928114c21fde656 100644 --- a/Applications/Python/ogs.simulator/ogs_python_module.cpp +++ b/Applications/Python/ogs.simulator/ogs_python_module.cpp @@ -30,7 +30,7 @@ std::unique_ptr<Simulation> simulation; -void initOGS(std::vector<std::string>& argv_str) +int initOGS(std::vector<std::string>& argv_str) { int argc = argv_str.size(); char** argv = new char*[argc]; @@ -72,9 +72,11 @@ void initOGS(std::vector<std::string>& argv_str) } INFO("OpenGeoSys is now initialized."); + + return ogs_status; } -void executeSimulation() +int executeSimulation() { BaseLib::RunTime run_time; @@ -104,6 +106,8 @@ void executeSimulation() auto const time_str = BaseLib::formatDate(end_time); INFO("OGS terminated on {:s}.", time_str); } + + return ogs_status; } double currentTime()