aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2010-04-18 22:15:20 -0400
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2010-04-18 22:15:20 -0400
commit40b2aaa8b149403a8f345f1f7721ddd6088db669 (patch)
treeefcf61c9f6186ba09d3acec2b32abebf8d42bbcf /Eigen
parent504a31f643468d05a10e3474b76a61e80022df59 (diff)
parent29a3aec4833f14fc04885f6dc5cda02ac88ccec0 (diff)
merge
Diffstat (limited to 'Eigen')
-rw-r--r--Eigen/src/Core/MathFunctions.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/Eigen/src/Core/MathFunctions.h b/Eigen/src/Core/MathFunctions.h
index 6d4fc41df..4a21ec975 100644
--- a/Eigen/src/Core/MathFunctions.h
+++ b/Eigen/src/Core/MathFunctions.h
@@ -74,7 +74,6 @@ inline int ei_abs2(int x) { return x*x; }
inline int ei_sqrt(int) { ei_assert(false); return 0; }
inline int ei_exp(int) { ei_assert(false); return 0; }
inline int ei_log(int) { ei_assert(false); return 0; }
-inline int ei_erf(int) { ei_assert(false); return 0; }
inline int ei_sin(int) { ei_assert(false); return 0; }
inline int ei_cos(int) { ei_assert(false); return 0; }
inline int ei_atan2(int, int) { ei_assert(false); return 0; }
@@ -129,9 +128,6 @@ inline float ei_norm1(float x) { return ei_abs(x); }
inline float ei_sqrt(float x) { return std::sqrt(x); }
inline float ei_exp(float x) { return std::exp(x); }
inline float ei_log(float x) { return std::log(x); }
-#if (!defined(_MSC_VER) && !defined(__CYGWIN__))
-inline float ei_erf(float x) { return erff(x); }
-#endif
inline float ei_sin(float x) { return std::sin(x); }
inline float ei_cos(float x) { return std::cos(x); }
inline float ei_atan2(float y, float x) { return std::atan2(y,x); }
@@ -179,9 +175,6 @@ inline double ei_norm1(double x) { return ei_abs(x); }
inline double ei_sqrt(double x) { return std::sqrt(x); }
inline double ei_exp(double x) { return std::exp(x); }
inline double ei_log(double x) { return std::log(x); }
-#if (!defined(_MSC_VER) && !defined(__CYGWIN__))
-inline double ei_erf(double x) { return erf(x); }
-#endif
inline double ei_sin(double x) { return std::sin(x); }
inline double ei_cos(double x) { return std::cos(x); }
inline double ei_atan2(double y, double x) { return std::atan2(y,x); }
@@ -303,9 +296,6 @@ inline long double ei_abs2(long double x) { return x*x; }
inline long double ei_sqrt(long double x) { return std::sqrt(x); }
inline long double ei_exp(long double x) { return std::exp(x); }
inline long double ei_log(long double x) { return std::log(x); }
-#if (!defined(_MSC_VER) && !defined(__CYGWIN__))
-inline long double ei_erf(long double x) { return erfl(x); }
-#endif
inline long double ei_sin(long double x) { return std::sin(x); }
inline long double ei_cos(long double x) { return std::cos(x); }
inline long double ei_atan2(long double y, long double x) { return std::atan2(y,x); }