From 6fab4012a36ebbc307ef29b7a7d1a9cb606fa67d Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Wed, 17 Jul 2013 21:13:45 +0200 Subject: Rename isFinite to hasNonFinite to avoid future naming collisions. --- Eigen/src/Core/BooleanRedux.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Eigen/src/Core/BooleanRedux.h') diff --git a/Eigen/src/Core/BooleanRedux.h b/Eigen/src/Core/BooleanRedux.h index f6afeb034..e9840257c 100644 --- a/Eigen/src/Core/BooleanRedux.h +++ b/Eigen/src/Core/BooleanRedux.h @@ -131,7 +131,7 @@ inline typename DenseBase::Index DenseBase::count() const /** \returns true is \c *this contains at least one Not A Number (NaN). * - * \sa isFinite() + * \sa hasNonFinite() */ template inline bool DenseBase::hasNaN() const @@ -144,7 +144,7 @@ inline bool DenseBase::hasNaN() const * \sa hasNaN() */ template -inline bool DenseBase::isFinite() const +inline bool DenseBase::hasNonFinite() const { return !((derived()-derived()).hasNaN()); } -- cgit v1.2.3