diff --git a/test/gtx/gtx_pca.cpp b/test/gtx/gtx_pca.cpp index fa1ef5dd..eac7f8e5 100644 --- a/test/gtx/gtx_pca.cpp +++ b/test/gtx/gtx_pca.cpp @@ -17,6 +17,13 @@ GLM_INLINE GLM_CONSTEXPR float myEpsilon() { return 0.00001f; } template<> GLM_INLINE GLM_CONSTEXPR double myEpsilon() { return 0.000001; } +template +T myEpsilon2(); +template<> +GLM_INLINE GLM_CONSTEXPR float myEpsilon2() { return 0.01f; } +template<> +GLM_INLINE GLM_CONSTEXPR double myEpsilon2() { return 0.000001; } + template bool vectorEpsilonEqual(glm::vec const& a, glm::vec const& b) @@ -329,7 +336,7 @@ namespace _1aga for (int i = 0; i < D; ++i) for (int d = 0; d < D; ++d) - if (!glm::equal(evecs[i][d], expectedEvecs[i * D + d], myEpsilon())) + if (!glm::equal(evecs[i][d], expectedEvecs[i * D + d], myEpsilon2())) { fprintf(stderr, "E: %.15lf != %.15lf ; diff: %.20lf\n", static_cast(evecs[i][d]),