Skip to content

Commit

Permalink
Merge branch 'main' into feature/PostProcessingDocumentation
Browse files Browse the repository at this point in the history
  • Loading branch information
ShaunFell authored Sep 4, 2024
2 parents b6c5391 + c1b75aa commit 41dfbe3
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Tests/BoostedBH_test/Main_Tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -479,13 +479,13 @@ int test2()
{
std::cout << "The minimum convergence factor was "
<< min_convergence_factor << std::endl;
std::cout << "Fixed Background test ........ passed" << std::endl;
std::cout << "Boosted BH test ........ passed" << std::endl;
}
else
{
std::cout << "The minimum convergence factor was "
<< min_convergence_factor << std::endl;
std::cout << "Fixed Background test ........ failed!!!" << std::endl;
std::cout << "Boosted BH test ........ failed!!!" << std::endl;
}

return failed;
Expand Down
4 changes: 2 additions & 2 deletions Tests/DefaultBackground_test/Main_Tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -494,13 +494,13 @@ int test2()
{
std::cout << "The minimum convergence factor was "
<< min_convergence_factor << std::endl;
std::cout << "Fixed Background test ........ passed" << std::endl;
std::cout << "Default Background test ........ passed" << std::endl;
}
else
{
std::cout << "The minimum convergence factor was "
<< min_convergence_factor << std::endl;
std::cout << "Fixed Background test ........ failed!!!" << std::endl;
std::cout << "Default Background test ........ failed!!!" << std::endl;
}

return failed;
Expand Down
4 changes: 2 additions & 2 deletions Tests/KerrSchild_test/Main_Tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -391,13 +391,13 @@ template <class background_t> int test2()
{
std::cout << "The minimum convergence factor was "
<< min_convergence_factor << std::endl;
std::cout << "Fixed Background test ........ passed" << std::endl;
std::cout << "KerrSchild test ........ passed" << std::endl;
}
else
{
std::cout << "The minimum convergence factor was "
<< min_convergence_factor << std::endl;
std::cout << "Fixed Background test ........ failed!!!" << std::endl;
std::cout << "KerrSchild test ........ failed!!!" << std::endl;
}

return failed;
Expand Down
4 changes: 2 additions & 2 deletions Tests/KerrdeSitter_test/Main_Tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -691,13 +691,13 @@ int test2(bool debug_plots_on = false)
{
std::cout << "The minimum convergence factor was "
<< min_convergence_factor << std::endl;
std::cout << "Fixed Background test ........ passed" << std::endl;
std::cout << "Kerr-de Sitter test ........ passed" << std::endl;
}
else
{
std::cout << "The minimum convergence factor was "
<< min_convergence_factor << std::endl;
std::cout << "Fixed Background test ........ failed!!!" << std::endl;
std::cout << "Kerr-de Sitter test ........ failed!!!" << std::endl;
}

return failed;
Expand Down

0 comments on commit 41dfbe3

Please sign in to comment.