- removed not nice comments

- made output text nicer
This commit is contained in:
hnil
2023-02-14 11:11:19 +01:00
parent bac9e8d1fe
commit 8a12f02db3
3 changed files with 8 additions and 20 deletions

View File

@@ -349,10 +349,8 @@ static inline int start(int argc, char **argv, bool registerParams=true)
std::cout << tmp << std::endl << std::endl;
}
else
std::cout << "eWoms " << versionString
<< " will now start the trip. "
<< "Please sit back, relax and enjoy the ride.\n"
<< std::flush;
std::cout << "opm models " << versionString
<< " will now start the simulation. " << std::endl;
}
// print the parameters if requested
@@ -393,9 +391,7 @@ static inline int start(int argc, char **argv, bool registerParams=true)
simulator.run();
if (myRank == 0) {
std::cout << "eWoms reached the destination. If it is not the one that was intended, "
<< "change the booking and try again.\n"
<< std::flush;
std::cout << "Simulation completed" << std::endl; "
}
return 0;
}