• Home
  • Raw
  • Download

Lines Matching refs:test_relative_error

389 typename NumTraits<typename T1::RealScalar>::NonInteger test_relative_error(const EigenBase<T1> &a,…  in test_relative_error()  function
399 typename T1::RealScalar test_relative_error(const T1 &a, const T2 &b, const typename T1::Coefficien…
401 return test_relative_error(a.coeffs(), b.coeffs());
405 typename T1::Scalar test_relative_error(const T1 &a, const T2 &b, const typename T1::MatrixType* = …
407 return test_relative_error(a.matrix(), b.matrix());
411 S test_relative_error(const Translation<S,D> &a, const Translation<S,D> &b) in test_relative_error() function
413 return test_relative_error(a.vector(), b.vector()); in test_relative_error()
417 S test_relative_error(const ParametrizedLine<S,D,O> &a, const ParametrizedLine<S,D,O> &b) in test_relative_error() function
419 …return (std::max)(test_relative_error(a.origin(), b.origin()), test_relative_error(a.origin(), b.o… in test_relative_error()
423 S test_relative_error(const AlignedBox<S,D> &a, const AlignedBox<S,D> &b) in test_relative_error() function
425 …return (std::max)(test_relative_error((a.min)(), (b.min)()), test_relative_error((a.max)(), (b.max… in test_relative_error()
430 typename T1::RealScalar test_relative_error(const MatrixBase<T1> &a, const SparseMatrixBase<T2> &b) in test_relative_error() function
432 return test_relative_error(a,b.toDense()); in test_relative_error()
437 typename T1::RealScalar test_relative_error(const SparseMatrixBase<T1> &a, const MatrixBase<T2> &b) in test_relative_error() function
439 return test_relative_error(a.toDense(),b); in test_relative_error()
444 typename T1::RealScalar test_relative_error(const SparseMatrixBase<T1> &a, const SparseMatrixBase<T… in test_relative_error() function
446 return test_relative_error(a.toDense(),b.toDense()); in test_relative_error()
450 typename NumTraits<typename NumTraits<T1>::Real>::NonInteger test_relative_error(const T1 &a, const…
457 T test_relative_error(const Rotation2D<T> &a, const Rotation2D<T> &b) in test_relative_error() function
459 return test_relative_error(a.angle(), b.angle()); in test_relative_error()
463 T test_relative_error(const AngleAxis<T> &a, const AngleAxis<T> &b) in test_relative_error() function
465 …return (std::max)(test_relative_error(a.angle(), b.angle()), test_relative_error(a.axis(), b.axis(… in test_relative_error()
494 …olerance " << get_test_precision(a) << ", relative error is: " << test_relative_error(a,b) << std… in verifyIsApprox()