| 101 | template<typename Derived> |
| 102 | template<typename OtherDerived> |
| 103 | EIGEN_DEVICE_FUNC bool DenseBase<Derived>::isApprox( |
| 104 | const DenseBase<OtherDerived>& other, |
| 105 | const RealScalar& prec |
| 106 | ) const |
| 107 | { |
| 108 | return internal::isApprox_selector<Derived, OtherDerived>::run(derived(), other.derived(), prec); |
| 109 | } |
| 110 | |
| 111 | /** \returns \c true if the norm of \c *this is much smaller than \a other, |
| 112 | * within the precision determined by \a prec. |
no test coverage detected