Skip to content
Snippets Groups Projects
Commit dda53dd1 authored by Matteo Cicuttin's avatar Matteo Cicuttin
Browse files

Fixed test.

parent a5c60ca7
Branches
Tags
No related merge requests found
...@@ -244,7 +244,7 @@ int main(void) ...@@ -244,7 +244,7 @@ int main(void)
std::cout << Bmagentafg << " *** TESTING: CURL ***" << reset << std::endl; std::cout << Bmagentafg << " *** TESTING: CURL ***" << reset << std::endl;
for (size_t go = 1; go < 2; go++) for (size_t go = 1; go < 2; go++)
for (size_t ao = 3; ao < 5; ao++) for (size_t ao = go; ao < 6; ao++)
failed_tests += test_curl_convergence(go, ao); failed_tests += test_curl_convergence(go, ao);
return failed_tests; return failed_tests;
......
...@@ -223,7 +223,7 @@ int main(void) ...@@ -223,7 +223,7 @@ int main(void)
std::cout << Bmagentafg << " *** TESTING: DIFFERENTIATION ***" << reset << std::endl; std::cout << Bmagentafg << " *** TESTING: DIFFERENTIATION ***" << reset << std::endl;
for (size_t go = 1; go < 5; go++) for (size_t go = 1; go < 5; go++)
for (size_t ao = go; ao < 5; ao++) for (size_t ao = go; ao < 6; ao++)
failed_tests += test_differentiation_convergence(go, ao); failed_tests += test_differentiation_convergence(go, ao);
return failed_tests; return failed_tests;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment