Skip to content
Snippets Groups Projects
Commit 66a4fc2d authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Fixed typos in SolverStarter

parent 768112f6
No related branches found
No related tags found
No related merge requests found
...@@ -305,12 +305,12 @@ bool SolverStarter< ConfigTag > :: runPDESolver( Problem& problem, ...@@ -305,12 +305,12 @@ bool SolverStarter< ConfigTag > :: runPDESolver( Problem& problem,
} }
catch ( const std::exception& e ) { catch ( const std::exception& e ) {
std::cerr << "Setting up the solver failed due to a C++ exception with description: " << e.what() << std::endl; std::cerr << "Setting up the solver failed due to a C++ exception with description: " << e.what() << std::endl;
logFile << "Setting up The solver failed due to a C++ exception with description: " << e.what() << std::endl; logFile << "Setting up the solver failed due to a C++ exception with description: " << e.what() << std::endl;
return false; return false;
} }
catch (...) { catch (...) {
std::cerr << "Setting up the solver failed due to an unknown C++ exception." << std::endl; std::cerr << "Setting up the solver failed due to an unknown C++ exception." << std::endl;
logFile << "Setting up The solver failed due to an unknown C++ exception." << std::endl; logFile << "Setting up the solver failed due to an unknown C++ exception." << std::endl;
throw; throw;
} }
} }
...@@ -371,8 +371,8 @@ bool SolverStarter< ConfigTag > :: runPDESolver( Problem& problem, ...@@ -371,8 +371,8 @@ bool SolverStarter< ConfigTag > :: runPDESolver( Problem& problem,
if( ! returnCode ) { if( ! returnCode ) {
if( verbose ) if( verbose )
std::cerr << std::endl << "The solver did not converge. " << std::endl; std::cerr << std::endl << "The solver did not converge." << std::endl;
logFile << "The solver did not converge. " << std::endl; logFile << "The solver did not converge." << std::endl;
} }
/**** /****
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment