Skip to content
Snippets Groups Projects
Commit bdded051 authored by Tim Keil's avatar Tim Keil
Browse files

[test] Add tolerances for numpy

parent 03329106
No related branches found
No related tags found
No related merge requests found
......@@ -159,12 +159,12 @@ TEST_F(EigenSolverForMatrixFrom3dPointsource_{{T_NAME}}, is_constructible)
TEST_F(EigenSolverForMatrixFrom3dPointsource_{{T_NAME}}, gives_correct_eigenvalues)
{
gives_correct_eigenvalues({ {"lapack", "1e-14"}, {"eigen", "1e-13"}, {"shifted_qr", "1e-14"}});
gives_correct_eigenvalues({ {"lapack", "1e-14"}, {"eigen", "1e-13"}, {"numpy", "1e-14"}, {"shifted_qr", "1e-14"}});
}
TEST_F(EigenSolverForMatrixFrom3dPointsource_{{T_NAME}}, gives_correct_real_eigenvalues)
{
gives_correct_real_eigenvalues({ {"lapack", "1e-14"}, {"eigen", "1e-13"}, {"shifted_qr", "1e-14"} });
gives_correct_real_eigenvalues({ {"lapack", "1e-14"}, {"eigen", "1e-13"}, {"numpy", "1e-14"}, {"shifted_qr", "1e-14"} });
}
TEST_F(EigenSolverForMatrixFrom3dPointsource_{{T_NAME}}, gives_correct_max_eigenvalue)
......
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