diff options
author | David Cournapeau <cournape@gmail.com> | 2009-06-29 11:06:14 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2009-06-29 11:06:14 +0000 |
commit | 0a02520361fced5ca1239930a61bef04d06f3743 (patch) | |
tree | 503c9e612dca1d6ad874b37aeb3545c8cb000837 | |
parent | 58d7b2d07e363a6c82d04639c8022300aee9be96 (diff) | |
download | numpy-0a02520361fced5ca1239930a61bef04d06f3743.tar.gz |
Remove duplicate math constant in npy math sources.
-rw-r--r-- | numpy/core/src/npy_math.c.src | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/numpy/core/src/npy_math.c.src b/numpy/core/src/npy_math.c.src index bc529c82a..967ca806d 100644 --- a/numpy/core/src/npy_math.c.src +++ b/numpy/core/src/npy_math.c.src @@ -290,22 +290,6 @@ static @type@ modf@c@(@type@ x, @type@ *iptr) * XXX: those should really be in the header */ -/**begin repeat - * #c = f, ,l# - * #C = F, ,L# - */ -#define NPY_E@c@ 2.7182818284590452353602874713526625@C@ /* e */ -#define NPY_LOG2E@c@ 1.4426950408889634073599246810018921@C@ /* log_2 e */ -#define NPY_LOG10E@c@ 0.4342944819032518276511289189166051@C@ /* log_10 e */ -#define NPY_LOGE2@c@ 0.6931471805599453094172321214581766@C@ /* log_e 2 */ -#define NPY_LOGE10@c@ 2.3025850929940456840179914546843642@C@ /* log_e 10 */ -#define NPY_PI@c@ 3.1415926535897932384626433832795029@C@ /* pi */ -#define NPY_PI_2@c@ 1.5707963267948966192313216916397514@C@ /* pi/2 */ -#define NPY_PI_4@c@ 0.7853981633974483096156608458198757@C@ /* pi/4 */ -#define NPY_1_PI@c@ 0.3183098861837906715377675267450287@C@ /* 1/pi */ -#define NPY_2_PI@c@ 0.6366197723675813430755350534900574@C@ /* 2/pi */ -/**end repeat**/ - /* * Non standard functions */ |