aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--Eigen/src/Core/BooleanRedux.h4
-rw-r--r--Eigen/src/Core/DenseBase.h2
-rw-r--r--test/special_numbers.cpp12
3 files changed, 9 insertions, 9 deletions
diff --git a/Eigen/src/Core/BooleanRedux.h b/Eigen/src/Core/BooleanRedux.h
index e9840257c..6e37e031a 100644
--- a/Eigen/src/Core/BooleanRedux.h
+++ b/Eigen/src/Core/BooleanRedux.h
@@ -131,7 +131,7 @@ inline typename DenseBase<Derived>::Index DenseBase<Derived>::count() const
/** \returns true is \c *this contains at least one Not A Number (NaN).
*
- * \sa hasNonFinite()
+ * \sa allFinite()
*/
template<typename Derived>
inline bool DenseBase<Derived>::hasNaN() const
@@ -144,7 +144,7 @@ inline bool DenseBase<Derived>::hasNaN() const
* \sa hasNaN()
*/
template<typename Derived>
-inline bool DenseBase<Derived>::hasNonFinite() const
+inline bool DenseBase<Derived>::allFinite() const
{
return !((derived()-derived()).hasNaN());
}
diff --git a/Eigen/src/Core/DenseBase.h b/Eigen/src/Core/DenseBase.h
index 44fd660d9..c5800f6c8 100644
--- a/Eigen/src/Core/DenseBase.h
+++ b/Eigen/src/Core/DenseBase.h
@@ -348,7 +348,7 @@ template<typename Derived> class DenseBase
bool isOnes(const RealScalar& prec = NumTraits<Scalar>::dummy_precision()) const;
inline bool hasNaN() const;
- inline bool hasNonFinite() const;
+ inline bool allFinite() const;
inline Derived& operator*=(const Scalar& other);
inline Derived& operator/=(const Scalar& other);
diff --git a/test/special_numbers.cpp b/test/special_numbers.cpp
index 0d03b4c64..2f1b704be 100644
--- a/test/special_numbers.cpp
+++ b/test/special_numbers.cpp
@@ -33,7 +33,7 @@ template<typename Scalar> void special_numbers()
mboth = mnan + minf;
VERIFY(!m1.hasNaN());
- VERIFY(m1.hasNonFinite());
+ VERIFY(m1.allFinite());
VERIFY(mnan.hasNaN());
VERIFY((s1*mnan).hasNaN());
@@ -42,11 +42,11 @@ template<typename Scalar> void special_numbers()
VERIFY(mboth.hasNaN());
VERIFY(mboth.array().hasNaN());
- VERIFY(!mnan.hasNonFinite());
- VERIFY(!minf.hasNonFinite());
- VERIFY(!(minf-mboth).hasNonFinite());
- VERIFY(!mboth.hasNonFinite());
- VERIFY(!mboth.array().hasNonFinite());
+ VERIFY(!mnan.allFinite());
+ VERIFY(!minf.allFinite());
+ VERIFY(!(minf-mboth).allFinite());
+ VERIFY(!mboth.allFinite());
+ VERIFY(!mboth.array().allFinite());
}
void test_special_numbers()