Searched refs:test_isApprox (Results 1 – 2 of 2) sorted by relevance
/external/eigen/test/ |
D | main.h | 218 #define VERIFY_IS_APPROX(a, b) VERIFY(test_isApprox(a, b)) 219 #define VERIFY_IS_NOT_APPROX(a, b) VERIFY(!test_isApprox(a, b)) 243 inline bool test_isApprox(const int& a, const int& b) in test_isApprox() function 250 inline bool test_isApprox(const float& a, const float& b) in test_isApprox() function 256 inline bool test_isApprox(const double& a, const double& b) in test_isApprox() function 264 inline bool test_isApprox(const std::complex<float>& a, const std::complex<float>& b) in test_isApprox() function 269 inline bool test_isApprox(const std::complex<double>& a, const std::complex<double>& b) in test_isApprox() function 274 inline bool test_isApprox(const long double& a, const long double& b) in test_isApprox() function 289 inline bool test_isApprox(const Type1& a, const Type2& b) in test_isApprox() function 304 return test_isApprox(a+ref, b+ref); in test_isApproxWithRef()
|
D | jacobisvd.cpp | 101 VERIFY( test_isApprox(residual_y,residual) || residual < residual_y ); in jacobisvd_solve() 105 VERIFY( test_isApprox(residual_y,residual) || residual < residual_y ); in jacobisvd_solve()
|