Lines Matching refs:test_relative_error
485 typename NumTraits<typename T1::RealScalar>::NonInteger test_relative_error(const EigenBase<T1> &a,… in test_relative_error() function
495 typename T1::RealScalar test_relative_error(const T1 &a, const T2 &b, const typename T1::Coefficien…
497 return test_relative_error(a.coeffs(), b.coeffs());
501 typename T1::Scalar test_relative_error(const T1 &a, const T2 &b, const typename T1::MatrixType* = …
503 return test_relative_error(a.matrix(), b.matrix());
507 S test_relative_error(const Translation<S,D> &a, const Translation<S,D> &b) in test_relative_error() function
509 return test_relative_error(a.vector(), b.vector()); in test_relative_error()
513 S test_relative_error(const ParametrizedLine<S,D,O> &a, const ParametrizedLine<S,D,O> &b) in test_relative_error() function
515 …return (std::max)(test_relative_error(a.origin(), b.origin()), test_relative_error(a.origin(), b.o… in test_relative_error()
519 S test_relative_error(const AlignedBox<S,D> &a, const AlignedBox<S,D> &b) in test_relative_error() function
521 …return (std::max)(test_relative_error((a.min)(), (b.min)()), test_relative_error((a.max)(), (b.max… in test_relative_error()
526 typename T1::RealScalar test_relative_error(const MatrixBase<T1> &a, const SparseMatrixBase<T2> &b) in test_relative_error() function
528 return test_relative_error(a,b.toDense()); in test_relative_error()
533 typename T1::RealScalar test_relative_error(const SparseMatrixBase<T1> &a, const MatrixBase<T2> &b) in test_relative_error() function
535 return test_relative_error(a.toDense(),b); in test_relative_error()
540 typename T1::RealScalar test_relative_error(const SparseMatrixBase<T1> &a, const SparseMatrixBase<T… in test_relative_error() function
542 return test_relative_error(a.toDense(),b.toDense()); in test_relative_error()
546 typename NumTraits<typename NumTraits<T1>::Real>::NonInteger test_relative_error(const T1 &a, const…
553 T test_relative_error(const Rotation2D<T> &a, const Rotation2D<T> &b) in test_relative_error() function
555 return test_relative_error(a.angle(), b.angle()); in test_relative_error()
559 T test_relative_error(const AngleAxis<T> &a, const AngleAxis<T> &b) in test_relative_error() function
561 …return (std::max)(test_relative_error(a.angle(), b.angle()), test_relative_error(a.axis(), b.axis(… in test_relative_error()
590 …olerance " << get_test_precision(a) << ", relative error is: " << test_relative_error(a,b) << std… in verifyIsApprox()