From 03373f41cb36b3419d6cbdcc72a3401c8ee28480 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Thu, 7 Mar 2013 23:35:26 +0100 Subject: [PATCH] Fix bug #561: remove useless sign macro --- unsupported/Eigen/src/AutoDiff/AutoDiffScalar.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/unsupported/Eigen/src/AutoDiff/AutoDiffScalar.h b/unsupported/Eigen/src/AutoDiff/AutoDiffScalar.h index b833df3c0..2be920532 100644 --- a/unsupported/Eigen/src/AutoDiff/AutoDiffScalar.h +++ b/unsupported/Eigen/src/AutoDiff/AutoDiffScalar.h @@ -532,11 +532,9 @@ inline AutoDiffScalar (min)(const T& x, const AutoDiffScalar& template inline AutoDiffScalar (max)(const T& x, const AutoDiffScalar& y) { return (x > y ? x : y); } -#define sign(x) x >= 0 ? 1 : -1 // required for abs function below - EIGEN_AUTODIFF_DECLARE_GLOBAL_UNARY(abs, using std::abs; - return ReturnType(abs(x.value()), x.derivatives() * (sign(x.value())));) + return ReturnType(abs(x.value()), x.derivatives() * (x.value()<0 ? -1 : 1) );) EIGEN_AUTODIFF_DECLARE_GLOBAL_UNARY(abs2, using internal::abs2;