blob: ef33dabec86fac5d886610e4fd123621d0f220c9 [file] [log] [blame]
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001/* Math module -- standard C math library functions, pi and e */
2
Christian Heimes6f341092008-04-18 23:13:07 +00003/* Here are some comments from Tim Peters, extracted from the
4 discussion attached to http://bugs.python.org/issue1640. They
5 describe the general aims of the math module with respect to
6 special values, IEEE-754 floating-point exceptions, and Python
7 exceptions.
8
9These are the "spirit of 754" rules:
10
111. If the mathematical result is a real number, but of magnitude too
12large to approximate by a machine float, overflow is signaled and the
13result is an infinity (with the appropriate sign).
14
152. If the mathematical result is a real number, but of magnitude too
16small to approximate by a machine float, underflow is signaled and the
17result is a zero (with the appropriate sign).
18
193. At a singularity (a value x such that the limit of f(y) as y
20approaches x exists and is an infinity), "divide by zero" is signaled
21and the result is an infinity (with the appropriate sign). This is
22complicated a little by that the left-side and right-side limits may
23not be the same; e.g., 1/x approaches +inf or -inf as x approaches 0
24from the positive or negative directions. In that specific case, the
25sign of the zero determines the result of 1/0.
26
274. At a point where a function has no defined result in the extended
28reals (i.e., the reals plus an infinity or two), invalid operation is
29signaled and a NaN is returned.
30
31And these are what Python has historically /tried/ to do (but not
32always successfully, as platform libm behavior varies a lot):
33
34For #1, raise OverflowError.
35
36For #2, return a zero (with the appropriate sign if that happens by
37accident ;-)).
38
39For #3 and #4, raise ValueError. It may have made sense to raise
40Python's ZeroDivisionError in #3, but historically that's only been
41raised for division by zero and mod by zero.
42
43*/
44
45/*
46 In general, on an IEEE-754 platform the aim is to follow the C99
47 standard, including Annex 'F', whenever possible. Where the
48 standard recommends raising the 'divide-by-zero' or 'invalid'
49 floating-point exceptions, Python should raise a ValueError. Where
50 the standard recommends raising 'overflow', Python should raise an
51 OverflowError. In all other circumstances a value should be
52 returned.
53 */
54
Barry Warsaw8b43b191996-12-09 22:32:36 +000055#include "Python.h"
Michael W. Hudson9ef852c2005-04-06 13:05:18 +000056#include "longintrepr.h" /* just for SHIFT */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000057
Neal Norwitz5f95a792008-01-25 08:04:16 +000058#ifdef _OSF_SOURCE
59/* OSF1 5.1 doesn't make this available with XOPEN_SOURCE_EXTENDED defined */
60extern double copysign(double, double);
61#endif
62
Tim Peters1d120612000-10-12 06:10:25 +000063/* Call is_error when errno != 0, and where x is the result libm
64 * returned. is_error will usually set up an exception and return
65 * true (1), but may return false (0) without setting up an exception.
66 */
67static int
68is_error(double x)
Guido van Rossum8832b621991-12-16 15:44:24 +000069{
Tim Peters1d120612000-10-12 06:10:25 +000070 int result = 1; /* presumption of guilt */
Tim Peters2bf405a2000-10-12 19:42:00 +000071 assert(errno); /* non-zero errno is a precondition for calling */
Guido van Rossum8832b621991-12-16 15:44:24 +000072 if (errno == EDOM)
Barry Warsaw8b43b191996-12-09 22:32:36 +000073 PyErr_SetString(PyExc_ValueError, "math domain error");
Tim Petersa40c7932001-09-05 22:36:56 +000074
Tim Peters1d120612000-10-12 06:10:25 +000075 else if (errno == ERANGE) {
76 /* ANSI C generally requires libm functions to set ERANGE
77 * on overflow, but also generally *allows* them to set
78 * ERANGE on underflow too. There's no consistency about
Tim Petersa40c7932001-09-05 22:36:56 +000079 * the latter across platforms.
80 * Alas, C99 never requires that errno be set.
81 * Here we suppress the underflow errors (libm functions
82 * should return a zero on underflow, and +- HUGE_VAL on
83 * overflow, so testing the result for zero suffices to
84 * distinguish the cases).
Mark Dickinsonfb1c4b92008-06-17 21:16:55 +000085 *
86 * On some platforms (Ubuntu/ia64) it seems that errno can be
87 * set to ERANGE for subnormal results that do *not* underflow
88 * to zero. So to be safe, we'll ignore ERANGE whenever the
89 * function result is less than one in absolute value.
Tim Peters1d120612000-10-12 06:10:25 +000090 */
Mark Dickinsonfb1c4b92008-06-17 21:16:55 +000091 if (fabs(x) < 1.0)
92 result = 0;
93 else
Tim Petersfe71f812001-08-07 22:10:00 +000094 PyErr_SetString(PyExc_OverflowError,
Tim Peters1d120612000-10-12 06:10:25 +000095 "math range error");
Tim Peters1d120612000-10-12 06:10:25 +000096 }
Guido van Rossum8832b621991-12-16 15:44:24 +000097 else
Barry Warsaw8b43b191996-12-09 22:32:36 +000098 /* Unexpected math error */
99 PyErr_SetFromErrno(PyExc_ValueError);
Tim Peters1d120612000-10-12 06:10:25 +0000100 return result;
Guido van Rossum8832b621991-12-16 15:44:24 +0000101}
102
Christian Heimes6f341092008-04-18 23:13:07 +0000103/*
Mark Dickinson92483cd2008-04-20 21:39:04 +0000104 wrapper for atan2 that deals directly with special cases before
105 delegating to the platform libm for the remaining cases. This
106 is necessary to get consistent behaviour across platforms.
107 Windows, FreeBSD and alpha Tru64 are amongst platforms that don't
108 always follow C99.
109*/
110
111static double
112m_atan2(double y, double x)
113{
114 if (Py_IS_NAN(x) || Py_IS_NAN(y))
115 return Py_NAN;
116 if (Py_IS_INFINITY(y)) {
117 if (Py_IS_INFINITY(x)) {
118 if (copysign(1., x) == 1.)
119 /* atan2(+-inf, +inf) == +-pi/4 */
120 return copysign(0.25*Py_MATH_PI, y);
121 else
122 /* atan2(+-inf, -inf) == +-pi*3/4 */
123 return copysign(0.75*Py_MATH_PI, y);
124 }
125 /* atan2(+-inf, x) == +-pi/2 for finite x */
126 return copysign(0.5*Py_MATH_PI, y);
127 }
128 if (Py_IS_INFINITY(x) || y == 0.) {
129 if (copysign(1., x) == 1.)
130 /* atan2(+-y, +inf) = atan2(+-0, +x) = +-0. */
131 return copysign(0., y);
132 else
133 /* atan2(+-y, -inf) = atan2(+-0., -x) = +-pi. */
134 return copysign(Py_MATH_PI, y);
135 }
136 return atan2(y, x);
137}
138
139/*
Christian Heimes6f341092008-04-18 23:13:07 +0000140 math_1 is used to wrap a libm function f that takes a double
141 arguments and returns a double.
142
143 The error reporting follows these rules, which are designed to do
144 the right thing on C89/C99 platforms and IEEE 754/non IEEE 754
145 platforms.
146
147 - a NaN result from non-NaN inputs causes ValueError to be raised
148 - an infinite result from finite inputs causes OverflowError to be
149 raised if can_overflow is 1, or raises ValueError if can_overflow
150 is 0.
151 - if the result is finite and errno == EDOM then ValueError is
152 raised
153 - if the result is finite and nonzero and errno == ERANGE then
154 OverflowError is raised
155
156 The last rule is used to catch overflow on platforms which follow
157 C89 but for which HUGE_VAL is not an infinity.
158
159 For the majority of one-argument functions these rules are enough
160 to ensure that Python's functions behave as specified in 'Annex F'
161 of the C99 standard, with the 'invalid' and 'divide-by-zero'
162 floating-point exceptions mapping to Python's ValueError and the
163 'overflow' floating-point exception mapping to OverflowError.
164 math_1 only works for functions that don't have singularities *and*
165 the possibility of overflow; fortunately, that covers everything we
166 care about right now.
167*/
168
Barry Warsaw8b43b191996-12-09 22:32:36 +0000169static PyObject *
Christian Heimes6f341092008-04-18 23:13:07 +0000170math_1(PyObject *arg, double (*func) (double), int can_overflow)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000171{
Christian Heimes6f341092008-04-18 23:13:07 +0000172 double x, r;
173 x = PyFloat_AsDouble(arg);
Neal Norwitz45e230a2006-11-19 21:26:53 +0000174 if (x == -1.0 && PyErr_Occurred())
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000175 return NULL;
176 errno = 0;
Christian Heimes6f341092008-04-18 23:13:07 +0000177 PyFPE_START_PROTECT("in math_1", return 0);
178 r = (*func)(x);
179 PyFPE_END_PROTECT(r);
180 if (Py_IS_NAN(r)) {
181 if (!Py_IS_NAN(x))
182 errno = EDOM;
183 else
184 errno = 0;
185 }
186 else if (Py_IS_INFINITY(r)) {
187 if (Py_IS_FINITE(x))
188 errno = can_overflow ? ERANGE : EDOM;
189 else
190 errno = 0;
191 }
192 if (errno && is_error(r))
Tim Peters1d120612000-10-12 06:10:25 +0000193 return NULL;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000194 else
Christian Heimes6f341092008-04-18 23:13:07 +0000195 return PyFloat_FromDouble(r);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000196}
197
Christian Heimes6f341092008-04-18 23:13:07 +0000198/*
199 math_2 is used to wrap a libm function f that takes two double
200 arguments and returns a double.
201
202 The error reporting follows these rules, which are designed to do
203 the right thing on C89/C99 platforms and IEEE 754/non IEEE 754
204 platforms.
205
206 - a NaN result from non-NaN inputs causes ValueError to be raised
207 - an infinite result from finite inputs causes OverflowError to be
208 raised.
209 - if the result is finite and errno == EDOM then ValueError is
210 raised
211 - if the result is finite and nonzero and errno == ERANGE then
212 OverflowError is raised
213
214 The last rule is used to catch overflow on platforms which follow
215 C89 but for which HUGE_VAL is not an infinity.
216
217 For most two-argument functions (copysign, fmod, hypot, atan2)
218 these rules are enough to ensure that Python's functions behave as
219 specified in 'Annex F' of the C99 standard, with the 'invalid' and
220 'divide-by-zero' floating-point exceptions mapping to Python's
221 ValueError and the 'overflow' floating-point exception mapping to
222 OverflowError.
223*/
224
Barry Warsaw8b43b191996-12-09 22:32:36 +0000225static PyObject *
Neal Norwitz45e230a2006-11-19 21:26:53 +0000226math_2(PyObject *args, double (*func) (double, double), char *funcname)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000227{
Neal Norwitz45e230a2006-11-19 21:26:53 +0000228 PyObject *ox, *oy;
Christian Heimes6f341092008-04-18 23:13:07 +0000229 double x, y, r;
Neal Norwitz45e230a2006-11-19 21:26:53 +0000230 if (! PyArg_UnpackTuple(args, funcname, 2, 2, &ox, &oy))
231 return NULL;
232 x = PyFloat_AsDouble(ox);
233 y = PyFloat_AsDouble(oy);
234 if ((x == -1.0 || y == -1.0) && PyErr_Occurred())
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000235 return NULL;
236 errno = 0;
Christian Heimes6f341092008-04-18 23:13:07 +0000237 PyFPE_START_PROTECT("in math_2", return 0);
238 r = (*func)(x, y);
239 PyFPE_END_PROTECT(r);
240 if (Py_IS_NAN(r)) {
241 if (!Py_IS_NAN(x) && !Py_IS_NAN(y))
242 errno = EDOM;
243 else
244 errno = 0;
245 }
246 else if (Py_IS_INFINITY(r)) {
247 if (Py_IS_FINITE(x) && Py_IS_FINITE(y))
248 errno = ERANGE;
249 else
250 errno = 0;
251 }
252 if (errno && is_error(r))
Tim Peters1d120612000-10-12 06:10:25 +0000253 return NULL;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000254 else
Christian Heimes6f341092008-04-18 23:13:07 +0000255 return PyFloat_FromDouble(r);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000256}
257
Christian Heimes6f341092008-04-18 23:13:07 +0000258#define FUNC1(funcname, func, can_overflow, docstring) \
Fred Drake40c48682000-07-03 18:11:56 +0000259 static PyObject * math_##funcname(PyObject *self, PyObject *args) { \
Christian Heimes6f341092008-04-18 23:13:07 +0000260 return math_1(args, func, can_overflow); \
Guido van Rossumc6e22901998-12-04 19:26:43 +0000261 }\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000262 PyDoc_STRVAR(math_##funcname##_doc, docstring);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000263
Fred Drake40c48682000-07-03 18:11:56 +0000264#define FUNC2(funcname, func, docstring) \
265 static PyObject * math_##funcname(PyObject *self, PyObject *args) { \
Neal Norwitz45e230a2006-11-19 21:26:53 +0000266 return math_2(args, func, #funcname); \
Guido van Rossumc6e22901998-12-04 19:26:43 +0000267 }\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000268 PyDoc_STRVAR(math_##funcname##_doc, docstring);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000269
Christian Heimes6f341092008-04-18 23:13:07 +0000270FUNC1(acos, acos, 0,
Tim Petersfe71f812001-08-07 22:10:00 +0000271 "acos(x)\n\nReturn the arc cosine (measured in radians) of x.")
Christian Heimes6f341092008-04-18 23:13:07 +0000272FUNC1(acosh, acosh, 0,
273 "acosh(x)\n\nReturn the hyperbolic arc cosine (measured in radians) of x.")
274FUNC1(asin, asin, 0,
Tim Petersfe71f812001-08-07 22:10:00 +0000275 "asin(x)\n\nReturn the arc sine (measured in radians) of x.")
Christian Heimes6f341092008-04-18 23:13:07 +0000276FUNC1(asinh, asinh, 0,
277 "asinh(x)\n\nReturn the hyperbolic arc sine (measured in radians) of x.")
278FUNC1(atan, atan, 0,
Tim Petersfe71f812001-08-07 22:10:00 +0000279 "atan(x)\n\nReturn the arc tangent (measured in radians) of x.")
Mark Dickinson92483cd2008-04-20 21:39:04 +0000280FUNC2(atan2, m_atan2,
Tim Petersfe71f812001-08-07 22:10:00 +0000281 "atan2(y, x)\n\nReturn the arc tangent (measured in radians) of y/x.\n"
282 "Unlike atan(y/x), the signs of both x and y are considered.")
Christian Heimes6f341092008-04-18 23:13:07 +0000283FUNC1(atanh, atanh, 0,
284 "atanh(x)\n\nReturn the hyperbolic arc tangent (measured in radians) of x.")
285FUNC1(ceil, ceil, 0,
Jeffrey Yasskin9871d8f2008-01-05 08:47:13 +0000286 "ceil(x)\n\nReturn the ceiling of x as a float.\n"
287 "This is the smallest integral value >= x.")
Christian Heimeseebb79c2008-01-03 22:32:26 +0000288FUNC2(copysign, copysign,
Christian Heimes6f341092008-04-18 23:13:07 +0000289 "copysign(x,y)\n\nReturn x with the sign of y.")
290FUNC1(cos, cos, 0,
291 "cos(x)\n\nReturn the cosine of x (measured in radians).")
292FUNC1(cosh, cosh, 1,
293 "cosh(x)\n\nReturn the hyperbolic cosine of x.")
294FUNC1(exp, exp, 1,
Guido van Rossumc6e22901998-12-04 19:26:43 +0000295 "exp(x)\n\nReturn e raised to the power of x.")
Christian Heimes6f341092008-04-18 23:13:07 +0000296FUNC1(fabs, fabs, 0,
Tim Petersfe71f812001-08-07 22:10:00 +0000297 "fabs(x)\n\nReturn the absolute value of the float x.")
Christian Heimes6f341092008-04-18 23:13:07 +0000298FUNC1(floor, floor, 0,
Jeffrey Yasskin9871d8f2008-01-05 08:47:13 +0000299 "floor(x)\n\nReturn the floor of x as a float.\n"
300 "This is the largest integral value <= x.")
Christian Heimes6f341092008-04-18 23:13:07 +0000301FUNC1(log1p, log1p, 1,
302 "log1p(x)\n\nReturn the natural logarithm of 1+x (base e).\n\
303 The result is computed in a way which is accurate for x near zero.")
304FUNC1(sin, sin, 0,
Tim Petersfe71f812001-08-07 22:10:00 +0000305 "sin(x)\n\nReturn the sine of x (measured in radians).")
Christian Heimes6f341092008-04-18 23:13:07 +0000306FUNC1(sinh, sinh, 1,
Guido van Rossumc6e22901998-12-04 19:26:43 +0000307 "sinh(x)\n\nReturn the hyperbolic sine of x.")
Christian Heimes6f341092008-04-18 23:13:07 +0000308FUNC1(sqrt, sqrt, 0,
Guido van Rossumc6e22901998-12-04 19:26:43 +0000309 "sqrt(x)\n\nReturn the square root of x.")
Christian Heimes6f341092008-04-18 23:13:07 +0000310FUNC1(tan, tan, 0,
Tim Petersfe71f812001-08-07 22:10:00 +0000311 "tan(x)\n\nReturn the tangent of x (measured in radians).")
Christian Heimes6f341092008-04-18 23:13:07 +0000312FUNC1(tanh, tanh, 0,
Guido van Rossumc6e22901998-12-04 19:26:43 +0000313 "tanh(x)\n\nReturn the hyperbolic tangent of x.")
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000314
Mark Dickinson99dfe922008-05-23 01:35:30 +0000315/* Precision summation function as msum() by Raymond Hettinger in
316 <http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/393090>,
317 enhanced with the exact partials sum and roundoff from Mark
318 Dickinson's post at <http://bugs.python.org/file10357/msum4.py>.
Raymond Hettinger778d5cc2008-05-23 04:32:43 +0000319 See those links for more details, proofs and other references.
Mark Dickinson99dfe922008-05-23 01:35:30 +0000320
Raymond Hettinger778d5cc2008-05-23 04:32:43 +0000321 Note 1: IEEE 754R floating point semantics are assumed,
322 but the current implementation does not re-establish special
323 value semantics across iterations (i.e. handling -Inf + Inf).
Mark Dickinson99dfe922008-05-23 01:35:30 +0000324
Raymond Hettinger778d5cc2008-05-23 04:32:43 +0000325 Note 2: No provision is made for intermediate overflow handling;
Raymond Hettinger2a9179a2008-05-29 08:38:23 +0000326 therefore, sum([1e+308, 1e-308, 1e+308]) returns 1e+308 while
Raymond Hettinger778d5cc2008-05-23 04:32:43 +0000327 sum([1e+308, 1e+308, 1e-308]) raises an OverflowError due to the
328 overflow of the first partial sum.
Mark Dickinson99dfe922008-05-23 01:35:30 +0000329
Andrew M. Kuchling5f198be2008-06-20 02:11:42 +0000330 Note 3: The intermediate values lo, yr, and hi are declared volatile so
Mark Dickinson2fcd8c92008-06-20 15:26:19 +0000331 aggressive compilers won't algebraically reduce lo to always be exactly 0.0.
Raymond Hettingerd6234142008-06-09 11:24:47 +0000332 Also, the volatile declaration forces the values to be stored in memory as
333 regular doubles instead of extended long precision (80-bit) values. This
Andrew M. Kuchling5f198be2008-06-20 02:11:42 +0000334 prevents double rounding because any addition or subtraction of two doubles
Raymond Hettingerd6234142008-06-09 11:24:47 +0000335 can be resolved exactly into double-sized hi and lo values. As long as the
336 hi value gets forced into a double before yr and lo are computed, the extra
337 bits in downstream extended precision operations (x87 for example) will be
338 exactly zero and therefore can be losslessly stored back into a double,
339 thereby preventing double rounding.
Mark Dickinson99dfe922008-05-23 01:35:30 +0000340
Raymond Hettingerd6234142008-06-09 11:24:47 +0000341 Note 4: A similar implementation is in Modules/cmathmodule.c.
342 Be sure to update both when making changes.
Mark Dickinson99dfe922008-05-23 01:35:30 +0000343
Raymond Hettinger778d5cc2008-05-23 04:32:43 +0000344 Note 5: The signature of math.sum() differs from __builtin__.sum()
345 because the start argument doesn't make sense in the context of
346 accurate summation. Since the partials table is collapsed before
347 returning a result, sum(seq2, start=sum(seq1)) may not equal the
348 accurate result returned by sum(itertools.chain(seq1, seq2)).
Mark Dickinson99dfe922008-05-23 01:35:30 +0000349*/
350
351#define NUM_PARTIALS 32 /* initial partials array size, on stack */
352
Raymond Hettinger778d5cc2008-05-23 04:32:43 +0000353/* Extend the partials array p[] by doubling its size. */
354static int /* non-zero on error */
Mark Dickinsonfef6b132008-07-30 16:20:10 +0000355_fsum_realloc(double **p_ptr, Py_ssize_t n,
Raymond Hettingerd6234142008-06-09 11:24:47 +0000356 double *ps, Py_ssize_t *m_ptr)
Mark Dickinson99dfe922008-05-23 01:35:30 +0000357{
358 void *v = NULL;
359 Py_ssize_t m = *m_ptr;
360
Raymond Hettingerd6234142008-06-09 11:24:47 +0000361 m += m; /* double */
362 if (n < m && m < (PY_SSIZE_T_MAX / sizeof(double))) {
363 double *p = *p_ptr;
Mark Dickinson99dfe922008-05-23 01:35:30 +0000364 if (p == ps) {
Raymond Hettingerd6234142008-06-09 11:24:47 +0000365 v = PyMem_Malloc(sizeof(double) * m);
Mark Dickinson99dfe922008-05-23 01:35:30 +0000366 if (v != NULL)
Raymond Hettingerd6234142008-06-09 11:24:47 +0000367 memcpy(v, ps, sizeof(double) * n);
Mark Dickinson99dfe922008-05-23 01:35:30 +0000368 }
369 else
Raymond Hettingerd6234142008-06-09 11:24:47 +0000370 v = PyMem_Realloc(p, sizeof(double) * m);
Mark Dickinson99dfe922008-05-23 01:35:30 +0000371 }
Raymond Hettinger778d5cc2008-05-23 04:32:43 +0000372 if (v == NULL) { /* size overflow or no memory */
Mark Dickinsonfef6b132008-07-30 16:20:10 +0000373 PyErr_SetString(PyExc_MemoryError, "math.fsum partials");
Mark Dickinson99dfe922008-05-23 01:35:30 +0000374 return 1;
375 }
Raymond Hettingerd6234142008-06-09 11:24:47 +0000376 *p_ptr = (double*) v;
Mark Dickinson99dfe922008-05-23 01:35:30 +0000377 *m_ptr = m;
378 return 0;
379}
380
381/* Full precision summation of a sequence of floats.
382
383 def msum(iterable):
384 partials = [] # sorted, non-overlapping partial sums
385 for x in iterable:
386 i = 0
387 for y in partials:
388 if abs(x) < abs(y):
389 x, y = y, x
390 hi = x + y
391 lo = y - (hi - x)
392 if lo:
393 partials[i] = lo
394 i += 1
395 x = hi
396 partials[i:] = [x]
397 return sum_exact(partials)
398
399 Rounded x+y stored in hi with the roundoff stored in lo. Together hi+lo
400 are exactly equal to x+y. The inner loop applies hi/lo summation to each
401 partial so that the list of partial sums remains exact.
402
403 Sum_exact() adds the partial sums exactly and correctly rounds the final
404 result (using the round-half-to-even rule). The items in partials remain
405 non-zero, non-special, non-overlapping and strictly increasing in
406 magnitude, but possibly not all having the same sign.
407
Raymond Hettinger778d5cc2008-05-23 04:32:43 +0000408 Depends on IEEE 754 arithmetic guarantees and half-even rounding.
409*/
410
Mark Dickinson99dfe922008-05-23 01:35:30 +0000411static PyObject*
Mark Dickinsonfef6b132008-07-30 16:20:10 +0000412math_fsum(PyObject *self, PyObject *seq)
Mark Dickinson99dfe922008-05-23 01:35:30 +0000413{
414 PyObject *item, *iter, *sum = NULL;
415 Py_ssize_t i, j, n = 0, m = NUM_PARTIALS;
Raymond Hettingerd6234142008-06-09 11:24:47 +0000416 double x, y, t, ps[NUM_PARTIALS], *p = ps;
Mark Dickinsonabe0aee2008-07-30 12:01:41 +0000417 double xsave, special_sum = 0.0, inf_sum = 0.0;
Raymond Hettingerd6234142008-06-09 11:24:47 +0000418 volatile double hi, yr, lo;
Mark Dickinson99dfe922008-05-23 01:35:30 +0000419
420 iter = PyObject_GetIter(seq);
421 if (iter == NULL)
422 return NULL;
423
Mark Dickinsonfef6b132008-07-30 16:20:10 +0000424 PyFPE_START_PROTECT("fsum", Py_DECREF(iter); return NULL)
Mark Dickinson99dfe922008-05-23 01:35:30 +0000425
Raymond Hettinger778d5cc2008-05-23 04:32:43 +0000426 for(;;) { /* for x in iterable */
Mark Dickinson99dfe922008-05-23 01:35:30 +0000427 assert(0 <= n && n <= m);
428 assert((m == NUM_PARTIALS && p == ps) ||
429 (m > NUM_PARTIALS && p != NULL));
430
431 item = PyIter_Next(iter);
432 if (item == NULL) {
433 if (PyErr_Occurred())
Mark Dickinsonfef6b132008-07-30 16:20:10 +0000434 goto _fsum_error;
Raymond Hettinger778d5cc2008-05-23 04:32:43 +0000435 break;
Mark Dickinson99dfe922008-05-23 01:35:30 +0000436 }
Raymond Hettingerd6234142008-06-09 11:24:47 +0000437 x = PyFloat_AsDouble(item);
Mark Dickinson99dfe922008-05-23 01:35:30 +0000438 Py_DECREF(item);
439 if (PyErr_Occurred())
Mark Dickinsonfef6b132008-07-30 16:20:10 +0000440 goto _fsum_error;
Mark Dickinson99dfe922008-05-23 01:35:30 +0000441
Mark Dickinsonabe0aee2008-07-30 12:01:41 +0000442 xsave = x;
Raymond Hettinger778d5cc2008-05-23 04:32:43 +0000443 for (i = j = 0; j < n; j++) { /* for y in partials */
Mark Dickinson99dfe922008-05-23 01:35:30 +0000444 y = p[j];
Raymond Hettingeref712d62008-05-30 18:20:50 +0000445 if (fabs(x) < fabs(y)) {
Mark Dickinsonabe0aee2008-07-30 12:01:41 +0000446 t = x; x = y; y = t;
Raymond Hettingeref712d62008-05-30 18:20:50 +0000447 }
Mark Dickinson99dfe922008-05-23 01:35:30 +0000448 hi = x + y;
Raymond Hettingeref712d62008-05-30 18:20:50 +0000449 yr = hi - x;
450 lo = y - yr;
Mark Dickinson99dfe922008-05-23 01:35:30 +0000451 if (lo != 0.0)
452 p[i++] = lo;
453 x = hi;
454 }
Mark Dickinsonabe0aee2008-07-30 12:01:41 +0000455
456 n = i; /* ps[i:] = [x] */
Mark Dickinson99dfe922008-05-23 01:35:30 +0000457 if (x != 0.0) {
Mark Dickinsonabe0aee2008-07-30 12:01:41 +0000458 if (! Py_IS_FINITE(x)) {
459 /* a nonfinite x could arise either as
460 a result of intermediate overflow, or
461 as a result of a nan or inf in the
462 summands */
463 if (Py_IS_FINITE(xsave)) {
464 PyErr_SetString(PyExc_OverflowError,
Mark Dickinsonfef6b132008-07-30 16:20:10 +0000465 "intermediate overflow in fsum");
466 goto _fsum_error;
Mark Dickinsonabe0aee2008-07-30 12:01:41 +0000467 }
468 if (Py_IS_INFINITY(xsave))
469 inf_sum += xsave;
470 special_sum += xsave;
471 /* reset partials */
Mark Dickinson99dfe922008-05-23 01:35:30 +0000472 n = 0;
Mark Dickinsonabe0aee2008-07-30 12:01:41 +0000473 }
Mark Dickinsonfef6b132008-07-30 16:20:10 +0000474 else if (n >= m && _fsum_realloc(&p, n, ps, &m))
475 goto _fsum_error;
Mark Dickinsonabe0aee2008-07-30 12:01:41 +0000476 else
477 p[n++] = x;
Mark Dickinson99dfe922008-05-23 01:35:30 +0000478 }
479 }
Mark Dickinson99dfe922008-05-23 01:35:30 +0000480
Mark Dickinsonabe0aee2008-07-30 12:01:41 +0000481 if (special_sum != 0.0) {
482 if (Py_IS_NAN(inf_sum))
483 PyErr_SetString(PyExc_ValueError,
Mark Dickinsonfef6b132008-07-30 16:20:10 +0000484 "-inf + inf in fsum");
Mark Dickinsonabe0aee2008-07-30 12:01:41 +0000485 else
486 sum = PyFloat_FromDouble(special_sum);
Mark Dickinsonfef6b132008-07-30 16:20:10 +0000487 goto _fsum_error;
Mark Dickinsonabe0aee2008-07-30 12:01:41 +0000488 }
489
Raymond Hettingeref712d62008-05-30 18:20:50 +0000490 hi = 0.0;
Mark Dickinson99dfe922008-05-23 01:35:30 +0000491 if (n > 0) {
492 hi = p[--n];
Mark Dickinsonabe0aee2008-07-30 12:01:41 +0000493 /* sum_exact(ps, hi) from the top, stop when the sum becomes
494 inexact. */
495 while (n > 0) {
496 x = hi;
497 y = p[--n];
498 assert(fabs(y) < fabs(x));
499 hi = x + y;
500 yr = hi - x;
501 lo = y - yr;
502 if (lo != 0.0)
503 break;
Mark Dickinson99dfe922008-05-23 01:35:30 +0000504 }
Mark Dickinsonabe0aee2008-07-30 12:01:41 +0000505 /* Make half-even rounding work across multiple partials.
506 Needed so that sum([1e-16, 1, 1e16]) will round-up the last
507 digit to two instead of down to zero (the 1e-16 makes the 1
508 slightly closer to two). With a potential 1 ULP rounding
509 error fixed-up, math.sum() can guarantee commutativity. */
510 if (n > 0 && ((lo < 0.0 && p[n-1] < 0.0) ||
511 (lo > 0.0 && p[n-1] > 0.0))) {
512 y = lo * 2.0;
513 x = hi + y;
514 yr = x - hi;
515 if (y == yr)
516 hi = x;
Mark Dickinson99dfe922008-05-23 01:35:30 +0000517 }
518 }
Raymond Hettingerd6234142008-06-09 11:24:47 +0000519 sum = PyFloat_FromDouble(hi);
Mark Dickinson99dfe922008-05-23 01:35:30 +0000520
Mark Dickinsonfef6b132008-07-30 16:20:10 +0000521_fsum_error:
Mark Dickinson99dfe922008-05-23 01:35:30 +0000522 PyFPE_END_PROTECT(hi)
Mark Dickinson99dfe922008-05-23 01:35:30 +0000523 Py_DECREF(iter);
524 if (p != ps)
525 PyMem_Free(p);
526 return sum;
527}
528
529#undef NUM_PARTIALS
530
Mark Dickinsonfef6b132008-07-30 16:20:10 +0000531PyDoc_STRVAR(math_fsum_doc,
Raymond Hettinger778d5cc2008-05-23 04:32:43 +0000532"sum(iterable)\n\n\
533Return an accurate floating point sum of values in the iterable.\n\
534Assumes IEEE-754 floating point arithmetic.");
Mark Dickinson99dfe922008-05-23 01:35:30 +0000535
Raymond Hettingerecbdd2e2008-06-09 06:54:45 +0000536static PyObject *
537math_factorial(PyObject *self, PyObject *arg)
538{
539 long i, x;
540 PyObject *result, *iobj, *newresult;
541
542 if (PyFloat_Check(arg)) {
543 double dx = PyFloat_AS_DOUBLE((PyFloatObject *)arg);
544 if (dx != floor(dx)) {
545 PyErr_SetString(PyExc_ValueError,
546 "factorial() only accepts integral values");
547 return NULL;
548 }
549 }
550
551 x = PyInt_AsLong(arg);
552 if (x == -1 && PyErr_Occurred())
553 return NULL;
554 if (x < 0) {
555 PyErr_SetString(PyExc_ValueError,
556 "factorial() not defined for negative values");
557 return NULL;
558 }
559
560 result = (PyObject *)PyInt_FromLong(1);
561 if (result == NULL)
562 return NULL;
563 for (i=1 ; i<=x ; i++) {
564 iobj = (PyObject *)PyInt_FromLong(i);
565 if (iobj == NULL)
566 goto error;
567 newresult = PyNumber_Multiply(result, iobj);
568 Py_DECREF(iobj);
569 if (newresult == NULL)
570 goto error;
571 Py_DECREF(result);
572 result = newresult;
573 }
574 return result;
575
576error:
577 Py_DECREF(result);
Raymond Hettingerecbdd2e2008-06-09 06:54:45 +0000578 return NULL;
579}
580
581PyDoc_STRVAR(math_factorial_doc, "Return n!");
582
Barry Warsaw8b43b191996-12-09 22:32:36 +0000583static PyObject *
Jeffrey Yasskinca2b69f2008-02-01 06:22:46 +0000584math_trunc(PyObject *self, PyObject *number)
585{
Jeffrey Yasskinca2b69f2008-02-01 06:22:46 +0000586 return PyObject_CallMethod(number, "__trunc__", NULL);
587}
588
589PyDoc_STRVAR(math_trunc_doc,
590"trunc(x:Real) -> Integral\n"
591"\n"
Raymond Hettingerfe424f72008-02-02 05:24:44 +0000592"Truncates x to the nearest Integral toward 0. Uses the __trunc__ magic method.");
Jeffrey Yasskinca2b69f2008-02-01 06:22:46 +0000593
594static PyObject *
Neal Norwitz45e230a2006-11-19 21:26:53 +0000595math_frexp(PyObject *self, PyObject *arg)
Guido van Rossumd18ad581991-10-24 14:57:21 +0000596{
Guido van Rossumd18ad581991-10-24 14:57:21 +0000597 int i;
Neal Norwitz45e230a2006-11-19 21:26:53 +0000598 double x = PyFloat_AsDouble(arg);
599 if (x == -1.0 && PyErr_Occurred())
Guido van Rossumd18ad581991-10-24 14:57:21 +0000600 return NULL;
Christian Heimes6f341092008-04-18 23:13:07 +0000601 /* deal with special cases directly, to sidestep platform
602 differences */
603 if (Py_IS_NAN(x) || Py_IS_INFINITY(x) || !x) {
604 i = 0;
605 }
606 else {
607 PyFPE_START_PROTECT("in math_frexp", return 0);
608 x = frexp(x, &i);
609 PyFPE_END_PROTECT(x);
610 }
611 return Py_BuildValue("(di)", x, i);
Guido van Rossumd18ad581991-10-24 14:57:21 +0000612}
613
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000614PyDoc_STRVAR(math_frexp_doc,
Tim Peters63c94532001-09-04 23:17:42 +0000615"frexp(x)\n"
616"\n"
617"Return the mantissa and exponent of x, as pair (m, e).\n"
618"m is a float and e is an int, such that x = m * 2.**e.\n"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000619"If x is 0, m and e are both 0. Else 0.5 <= abs(m) < 1.0.");
Guido van Rossumc6e22901998-12-04 19:26:43 +0000620
Barry Warsaw8b43b191996-12-09 22:32:36 +0000621static PyObject *
Fred Drake40c48682000-07-03 18:11:56 +0000622math_ldexp(PyObject *self, PyObject *args)
Guido van Rossumd18ad581991-10-24 14:57:21 +0000623{
Christian Heimes6f341092008-04-18 23:13:07 +0000624 double x, r;
Mark Dickinsonf8476c12008-05-09 17:54:23 +0000625 PyObject *oexp;
626 long exp;
627 if (! PyArg_ParseTuple(args, "dO:ldexp", &x, &oexp))
Guido van Rossumd18ad581991-10-24 14:57:21 +0000628 return NULL;
Mark Dickinsonf8476c12008-05-09 17:54:23 +0000629
630 if (PyLong_Check(oexp)) {
631 /* on overflow, replace exponent with either LONG_MAX
632 or LONG_MIN, depending on the sign. */
633 exp = PyLong_AsLong(oexp);
634 if (exp == -1 && PyErr_Occurred()) {
635 if (PyErr_ExceptionMatches(PyExc_OverflowError)) {
636 if (Py_SIZE(oexp) < 0) {
637 exp = LONG_MIN;
638 }
639 else {
640 exp = LONG_MAX;
641 }
642 PyErr_Clear();
643 }
644 else {
645 /* propagate any unexpected exception */
646 return NULL;
647 }
648 }
649 }
650 else if (PyInt_Check(oexp)) {
651 exp = PyInt_AS_LONG(oexp);
652 }
653 else {
654 PyErr_SetString(PyExc_TypeError,
655 "Expected an int or long as second argument "
656 "to ldexp.");
657 return NULL;
658 }
659
660 if (x == 0. || !Py_IS_FINITE(x)) {
661 /* NaNs, zeros and infinities are returned unchanged */
662 r = x;
Christian Heimes6f341092008-04-18 23:13:07 +0000663 errno = 0;
Mark Dickinsonf8476c12008-05-09 17:54:23 +0000664 } else if (exp > INT_MAX) {
665 /* overflow */
666 r = copysign(Py_HUGE_VAL, x);
667 errno = ERANGE;
668 } else if (exp < INT_MIN) {
669 /* underflow to +-0 */
670 r = copysign(0., x);
671 errno = 0;
672 } else {
673 errno = 0;
674 PyFPE_START_PROTECT("in math_ldexp", return 0);
675 r = ldexp(x, (int)exp);
676 PyFPE_END_PROTECT(r);
677 if (Py_IS_INFINITY(r))
678 errno = ERANGE;
679 }
680
Christian Heimes6f341092008-04-18 23:13:07 +0000681 if (errno && is_error(r))
Tim Peters1d120612000-10-12 06:10:25 +0000682 return NULL;
Mark Dickinsonf8476c12008-05-09 17:54:23 +0000683 return PyFloat_FromDouble(r);
Guido van Rossumd18ad581991-10-24 14:57:21 +0000684}
685
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000686PyDoc_STRVAR(math_ldexp_doc,
687"ldexp(x, i) -> x * (2**i)");
Guido van Rossumc6e22901998-12-04 19:26:43 +0000688
Barry Warsaw8b43b191996-12-09 22:32:36 +0000689static PyObject *
Neal Norwitz45e230a2006-11-19 21:26:53 +0000690math_modf(PyObject *self, PyObject *arg)
Guido van Rossumd18ad581991-10-24 14:57:21 +0000691{
Neal Norwitz45e230a2006-11-19 21:26:53 +0000692 double y, x = PyFloat_AsDouble(arg);
693 if (x == -1.0 && PyErr_Occurred())
Guido van Rossumd18ad581991-10-24 14:57:21 +0000694 return NULL;
Mark Dickinsonb2f70902008-04-20 01:39:24 +0000695 /* some platforms don't do the right thing for NaNs and
696 infinities, so we take care of special cases directly. */
697 if (!Py_IS_FINITE(x)) {
698 if (Py_IS_INFINITY(x))
699 return Py_BuildValue("(dd)", copysign(0., x), x);
700 else if (Py_IS_NAN(x))
701 return Py_BuildValue("(dd)", x, x);
702 }
703
Guido van Rossumd18ad581991-10-24 14:57:21 +0000704 errno = 0;
Christian Heimes6f341092008-04-18 23:13:07 +0000705 PyFPE_START_PROTECT("in math_modf", return 0);
Guido van Rossumd18ad581991-10-24 14:57:21 +0000706 x = modf(x, &y);
Christian Heimes6f341092008-04-18 23:13:07 +0000707 PyFPE_END_PROTECT(x);
708 return Py_BuildValue("(dd)", x, y);
Guido van Rossumd18ad581991-10-24 14:57:21 +0000709}
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000710
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000711PyDoc_STRVAR(math_modf_doc,
Tim Peters63c94532001-09-04 23:17:42 +0000712"modf(x)\n"
713"\n"
714"Return the fractional and integer parts of x. Both results carry the sign\n"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000715"of x. The integer part is returned as a real.");
Guido van Rossumc6e22901998-12-04 19:26:43 +0000716
Tim Peters78526162001-09-05 00:53:45 +0000717/* A decent logarithm is easy to compute even for huge longs, but libm can't
718 do that by itself -- loghelper can. func is log or log10, and name is
719 "log" or "log10". Note that overflow isn't possible: a long can contain
720 no more than INT_MAX * SHIFT bits, so has value certainly less than
721 2**(2**64 * 2**16) == 2**2**80, and log2 of that is 2**80, which is
722 small enough to fit in an IEEE single. log and log10 are even smaller.
723*/
724
725static PyObject*
Neal Norwitz45e230a2006-11-19 21:26:53 +0000726loghelper(PyObject* arg, double (*func)(double), char *funcname)
Tim Peters78526162001-09-05 00:53:45 +0000727{
Tim Peters78526162001-09-05 00:53:45 +0000728 /* If it is long, do it ourselves. */
729 if (PyLong_Check(arg)) {
730 double x;
731 int e;
732 x = _PyLong_AsScaledDouble(arg, &e);
733 if (x <= 0.0) {
734 PyErr_SetString(PyExc_ValueError,
735 "math domain error");
736 return NULL;
737 }
Christian Heimes543cabc2008-01-25 14:54:23 +0000738 /* Value is ~= x * 2**(e*PyLong_SHIFT), so the log ~=
739 log(x) + log(2) * e * PyLong_SHIFT.
740 CAUTION: e*PyLong_SHIFT may overflow using int arithmetic,
Tim Peters78526162001-09-05 00:53:45 +0000741 so force use of double. */
Christian Heimes543cabc2008-01-25 14:54:23 +0000742 x = func(x) + (e * (double)PyLong_SHIFT) * func(2.0);
Tim Peters78526162001-09-05 00:53:45 +0000743 return PyFloat_FromDouble(x);
744 }
745
746 /* Else let libm handle it by itself. */
Christian Heimes6f341092008-04-18 23:13:07 +0000747 return math_1(arg, func, 0);
Tim Peters78526162001-09-05 00:53:45 +0000748}
749
750static PyObject *
751math_log(PyObject *self, PyObject *args)
752{
Raymond Hettinger866964c2002-12-14 19:51:34 +0000753 PyObject *arg;
754 PyObject *base = NULL;
755 PyObject *num, *den;
756 PyObject *ans;
Raymond Hettinger866964c2002-12-14 19:51:34 +0000757
Raymond Hettingerea3fdf42002-12-29 16:33:45 +0000758 if (!PyArg_UnpackTuple(args, "log", 1, 2, &arg, &base))
Raymond Hettinger866964c2002-12-14 19:51:34 +0000759 return NULL;
Raymond Hettinger866964c2002-12-14 19:51:34 +0000760
Neal Norwitz45e230a2006-11-19 21:26:53 +0000761 num = loghelper(arg, log, "log");
762 if (num == NULL || base == NULL)
763 return num;
Raymond Hettinger866964c2002-12-14 19:51:34 +0000764
Neal Norwitz45e230a2006-11-19 21:26:53 +0000765 den = loghelper(base, log, "log");
Raymond Hettinger866964c2002-12-14 19:51:34 +0000766 if (den == NULL) {
767 Py_DECREF(num);
768 return NULL;
769 }
770
771 ans = PyNumber_Divide(num, den);
772 Py_DECREF(num);
773 Py_DECREF(den);
774 return ans;
Tim Peters78526162001-09-05 00:53:45 +0000775}
776
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000777PyDoc_STRVAR(math_log_doc,
Raymond Hettinger866964c2002-12-14 19:51:34 +0000778"log(x[, base]) -> the logarithm of x to the given base.\n\
779If the base not specified, returns the natural logarithm (base e) of x.");
Tim Peters78526162001-09-05 00:53:45 +0000780
781static PyObject *
Neal Norwitz45e230a2006-11-19 21:26:53 +0000782math_log10(PyObject *self, PyObject *arg)
Tim Peters78526162001-09-05 00:53:45 +0000783{
Neal Norwitz45e230a2006-11-19 21:26:53 +0000784 return loghelper(arg, log10, "log10");
Tim Peters78526162001-09-05 00:53:45 +0000785}
786
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000787PyDoc_STRVAR(math_log10_doc,
788"log10(x) -> the base 10 logarithm of x.");
Tim Peters78526162001-09-05 00:53:45 +0000789
Christian Heimes6f341092008-04-18 23:13:07 +0000790static PyObject *
791math_fmod(PyObject *self, PyObject *args)
792{
793 PyObject *ox, *oy;
794 double r, x, y;
795 if (! PyArg_UnpackTuple(args, "fmod", 2, 2, &ox, &oy))
796 return NULL;
797 x = PyFloat_AsDouble(ox);
798 y = PyFloat_AsDouble(oy);
799 if ((x == -1.0 || y == -1.0) && PyErr_Occurred())
800 return NULL;
801 /* fmod(x, +/-Inf) returns x for finite x. */
802 if (Py_IS_INFINITY(y) && Py_IS_FINITE(x))
803 return PyFloat_FromDouble(x);
804 errno = 0;
805 PyFPE_START_PROTECT("in math_fmod", return 0);
806 r = fmod(x, y);
807 PyFPE_END_PROTECT(r);
808 if (Py_IS_NAN(r)) {
809 if (!Py_IS_NAN(x) && !Py_IS_NAN(y))
810 errno = EDOM;
811 else
812 errno = 0;
813 }
814 if (errno && is_error(r))
815 return NULL;
816 else
817 return PyFloat_FromDouble(r);
818}
819
820PyDoc_STRVAR(math_fmod_doc,
821"fmod(x,y)\n\nReturn fmod(x, y), according to platform C."
822" x % y may differ.");
823
824static PyObject *
825math_hypot(PyObject *self, PyObject *args)
826{
827 PyObject *ox, *oy;
828 double r, x, y;
829 if (! PyArg_UnpackTuple(args, "hypot", 2, 2, &ox, &oy))
830 return NULL;
831 x = PyFloat_AsDouble(ox);
832 y = PyFloat_AsDouble(oy);
833 if ((x == -1.0 || y == -1.0) && PyErr_Occurred())
834 return NULL;
835 /* hypot(x, +/-Inf) returns Inf, even if x is a NaN. */
836 if (Py_IS_INFINITY(x))
837 return PyFloat_FromDouble(fabs(x));
838 if (Py_IS_INFINITY(y))
839 return PyFloat_FromDouble(fabs(y));
840 errno = 0;
841 PyFPE_START_PROTECT("in math_hypot", return 0);
842 r = hypot(x, y);
843 PyFPE_END_PROTECT(r);
844 if (Py_IS_NAN(r)) {
845 if (!Py_IS_NAN(x) && !Py_IS_NAN(y))
846 errno = EDOM;
847 else
848 errno = 0;
849 }
850 else if (Py_IS_INFINITY(r)) {
851 if (Py_IS_FINITE(x) && Py_IS_FINITE(y))
852 errno = ERANGE;
853 else
854 errno = 0;
855 }
856 if (errno && is_error(r))
857 return NULL;
858 else
859 return PyFloat_FromDouble(r);
860}
861
862PyDoc_STRVAR(math_hypot_doc,
863"hypot(x,y)\n\nReturn the Euclidean distance, sqrt(x*x + y*y).");
864
865/* pow can't use math_2, but needs its own wrapper: the problem is
866 that an infinite result can arise either as a result of overflow
867 (in which case OverflowError should be raised) or as a result of
868 e.g. 0.**-5. (for which ValueError needs to be raised.)
869*/
870
871static PyObject *
872math_pow(PyObject *self, PyObject *args)
873{
874 PyObject *ox, *oy;
875 double r, x, y;
Mark Dickinsoncec3f132008-04-20 04:13:13 +0000876 int odd_y;
Christian Heimes6f341092008-04-18 23:13:07 +0000877
878 if (! PyArg_UnpackTuple(args, "pow", 2, 2, &ox, &oy))
879 return NULL;
880 x = PyFloat_AsDouble(ox);
881 y = PyFloat_AsDouble(oy);
882 if ((x == -1.0 || y == -1.0) && PyErr_Occurred())
883 return NULL;
Mark Dickinsona1293eb2008-04-19 19:41:52 +0000884
Mark Dickinsoncec3f132008-04-20 04:13:13 +0000885 /* deal directly with IEEE specials, to cope with problems on various
886 platforms whose semantics don't exactly match C99 */
Mark Dickinson0da94c82008-04-21 01:55:50 +0000887 r = 0.; /* silence compiler warning */
Mark Dickinsoncec3f132008-04-20 04:13:13 +0000888 if (!Py_IS_FINITE(x) || !Py_IS_FINITE(y)) {
889 errno = 0;
890 if (Py_IS_NAN(x))
891 r = y == 0. ? 1. : x; /* NaN**0 = 1 */
892 else if (Py_IS_NAN(y))
893 r = x == 1. ? 1. : y; /* 1**NaN = 1 */
894 else if (Py_IS_INFINITY(x)) {
895 odd_y = Py_IS_FINITE(y) && fmod(fabs(y), 2.0) == 1.0;
896 if (y > 0.)
897 r = odd_y ? x : fabs(x);
898 else if (y == 0.)
899 r = 1.;
900 else /* y < 0. */
901 r = odd_y ? copysign(0., x) : 0.;
902 }
903 else if (Py_IS_INFINITY(y)) {
904 if (fabs(x) == 1.0)
905 r = 1.;
906 else if (y > 0. && fabs(x) > 1.0)
907 r = y;
908 else if (y < 0. && fabs(x) < 1.0) {
909 r = -y; /* result is +inf */
910 if (x == 0.) /* 0**-inf: divide-by-zero */
911 errno = EDOM;
912 }
913 else
914 r = 0.;
915 }
Mark Dickinsone941d972008-04-19 18:51:48 +0000916 }
Mark Dickinsoncec3f132008-04-20 04:13:13 +0000917 else {
918 /* let libm handle finite**finite */
919 errno = 0;
920 PyFPE_START_PROTECT("in math_pow", return 0);
921 r = pow(x, y);
922 PyFPE_END_PROTECT(r);
923 /* a NaN result should arise only from (-ve)**(finite
924 non-integer); in this case we want to raise ValueError. */
925 if (!Py_IS_FINITE(r)) {
926 if (Py_IS_NAN(r)) {
927 errno = EDOM;
928 }
929 /*
930 an infinite result here arises either from:
931 (A) (+/-0.)**negative (-> divide-by-zero)
932 (B) overflow of x**y with x and y finite
933 */
934 else if (Py_IS_INFINITY(r)) {
935 if (x == 0.)
936 errno = EDOM;
937 else
938 errno = ERANGE;
939 }
940 }
Christian Heimes6f341092008-04-18 23:13:07 +0000941 }
942
943 if (errno && is_error(r))
944 return NULL;
945 else
946 return PyFloat_FromDouble(r);
947}
948
949PyDoc_STRVAR(math_pow_doc,
950"pow(x,y)\n\nReturn x**y (x to the power of y).");
951
Christian Heimese2ca4242008-01-03 20:23:15 +0000952static const double degToRad = Py_MATH_PI / 180.0;
953static const double radToDeg = 180.0 / Py_MATH_PI;
Raymond Hettingerd6f22672002-05-13 03:56:10 +0000954
955static PyObject *
Neal Norwitz45e230a2006-11-19 21:26:53 +0000956math_degrees(PyObject *self, PyObject *arg)
Raymond Hettingerd6f22672002-05-13 03:56:10 +0000957{
Neal Norwitz45e230a2006-11-19 21:26:53 +0000958 double x = PyFloat_AsDouble(arg);
959 if (x == -1.0 && PyErr_Occurred())
Raymond Hettingerd6f22672002-05-13 03:56:10 +0000960 return NULL;
Christian Heimese2ca4242008-01-03 20:23:15 +0000961 return PyFloat_FromDouble(x * radToDeg);
Raymond Hettingerd6f22672002-05-13 03:56:10 +0000962}
963
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000964PyDoc_STRVAR(math_degrees_doc,
965"degrees(x) -> converts angle x from radians to degrees");
Raymond Hettingerd6f22672002-05-13 03:56:10 +0000966
967static PyObject *
Neal Norwitz45e230a2006-11-19 21:26:53 +0000968math_radians(PyObject *self, PyObject *arg)
Raymond Hettingerd6f22672002-05-13 03:56:10 +0000969{
Neal Norwitz45e230a2006-11-19 21:26:53 +0000970 double x = PyFloat_AsDouble(arg);
971 if (x == -1.0 && PyErr_Occurred())
Raymond Hettingerd6f22672002-05-13 03:56:10 +0000972 return NULL;
973 return PyFloat_FromDouble(x * degToRad);
974}
975
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000976PyDoc_STRVAR(math_radians_doc,
977"radians(x) -> converts angle x from degrees to radians");
Tim Peters78526162001-09-05 00:53:45 +0000978
Christian Heimese2ca4242008-01-03 20:23:15 +0000979static PyObject *
980math_isnan(PyObject *self, PyObject *arg)
981{
982 double x = PyFloat_AsDouble(arg);
983 if (x == -1.0 && PyErr_Occurred())
984 return NULL;
985 return PyBool_FromLong((long)Py_IS_NAN(x));
986}
987
988PyDoc_STRVAR(math_isnan_doc,
989"isnan(x) -> bool\n\
990Checks if float x is not a number (NaN)");
991
992static PyObject *
993math_isinf(PyObject *self, PyObject *arg)
994{
995 double x = PyFloat_AsDouble(arg);
996 if (x == -1.0 && PyErr_Occurred())
997 return NULL;
998 return PyBool_FromLong((long)Py_IS_INFINITY(x));
999}
1000
1001PyDoc_STRVAR(math_isinf_doc,
1002"isinf(x) -> bool\n\
1003Checks if float x is infinite (positive or negative)");
1004
Barry Warsaw8b43b191996-12-09 22:32:36 +00001005static PyMethodDef math_methods[] = {
Neal Norwitz45e230a2006-11-19 21:26:53 +00001006 {"acos", math_acos, METH_O, math_acos_doc},
Christian Heimes6f341092008-04-18 23:13:07 +00001007 {"acosh", math_acosh, METH_O, math_acosh_doc},
Neal Norwitz45e230a2006-11-19 21:26:53 +00001008 {"asin", math_asin, METH_O, math_asin_doc},
Christian Heimes6f341092008-04-18 23:13:07 +00001009 {"asinh", math_asinh, METH_O, math_asinh_doc},
Neal Norwitz45e230a2006-11-19 21:26:53 +00001010 {"atan", math_atan, METH_O, math_atan_doc},
Fred Drake40c48682000-07-03 18:11:56 +00001011 {"atan2", math_atan2, METH_VARARGS, math_atan2_doc},
Christian Heimes6f341092008-04-18 23:13:07 +00001012 {"atanh", math_atanh, METH_O, math_atanh_doc},
Neal Norwitz45e230a2006-11-19 21:26:53 +00001013 {"ceil", math_ceil, METH_O, math_ceil_doc},
Christian Heimeseebb79c2008-01-03 22:32:26 +00001014 {"copysign", math_copysign, METH_VARARGS, math_copysign_doc},
Neal Norwitz45e230a2006-11-19 21:26:53 +00001015 {"cos", math_cos, METH_O, math_cos_doc},
1016 {"cosh", math_cosh, METH_O, math_cosh_doc},
1017 {"degrees", math_degrees, METH_O, math_degrees_doc},
1018 {"exp", math_exp, METH_O, math_exp_doc},
1019 {"fabs", math_fabs, METH_O, math_fabs_doc},
Raymond Hettingerecbdd2e2008-06-09 06:54:45 +00001020 {"factorial", math_factorial, METH_O, math_factorial_doc},
Neal Norwitz45e230a2006-11-19 21:26:53 +00001021 {"floor", math_floor, METH_O, math_floor_doc},
Fred Drake40c48682000-07-03 18:11:56 +00001022 {"fmod", math_fmod, METH_VARARGS, math_fmod_doc},
Neal Norwitz45e230a2006-11-19 21:26:53 +00001023 {"frexp", math_frexp, METH_O, math_frexp_doc},
Mark Dickinsonfef6b132008-07-30 16:20:10 +00001024 {"fsum", math_fsum, METH_O, math_fsum_doc},
Fred Drake40c48682000-07-03 18:11:56 +00001025 {"hypot", math_hypot, METH_VARARGS, math_hypot_doc},
Christian Heimese2ca4242008-01-03 20:23:15 +00001026 {"isinf", math_isinf, METH_O, math_isinf_doc},
1027 {"isnan", math_isnan, METH_O, math_isnan_doc},
Fred Drake40c48682000-07-03 18:11:56 +00001028 {"ldexp", math_ldexp, METH_VARARGS, math_ldexp_doc},
1029 {"log", math_log, METH_VARARGS, math_log_doc},
Christian Heimes6f341092008-04-18 23:13:07 +00001030 {"log1p", math_log1p, METH_O, math_log1p_doc},
Neal Norwitz45e230a2006-11-19 21:26:53 +00001031 {"log10", math_log10, METH_O, math_log10_doc},
1032 {"modf", math_modf, METH_O, math_modf_doc},
Fred Drake40c48682000-07-03 18:11:56 +00001033 {"pow", math_pow, METH_VARARGS, math_pow_doc},
Neal Norwitz45e230a2006-11-19 21:26:53 +00001034 {"radians", math_radians, METH_O, math_radians_doc},
1035 {"sin", math_sin, METH_O, math_sin_doc},
1036 {"sinh", math_sinh, METH_O, math_sinh_doc},
1037 {"sqrt", math_sqrt, METH_O, math_sqrt_doc},
1038 {"tan", math_tan, METH_O, math_tan_doc},
1039 {"tanh", math_tanh, METH_O, math_tanh_doc},
Mark Dickinsonfef6b132008-07-30 16:20:10 +00001040 {"trunc", math_trunc, METH_O, math_trunc_doc},
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001041 {NULL, NULL} /* sentinel */
1042};
1043
Guido van Rossumc6e22901998-12-04 19:26:43 +00001044
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001045PyDoc_STRVAR(module_doc,
Tim Peters63c94532001-09-04 23:17:42 +00001046"This module is always available. It provides access to the\n"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001047"mathematical functions defined by the C standard.");
Guido van Rossumc6e22901998-12-04 19:26:43 +00001048
Mark Hammondfe51c6d2002-08-02 02:27:13 +00001049PyMODINIT_FUNC
Thomas Woutersf3f33dc2000-07-21 06:00:07 +00001050initmath(void)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001051{
Christian Heimes6f341092008-04-18 23:13:07 +00001052 PyObject *m;
Tim Petersfe71f812001-08-07 22:10:00 +00001053
Guido van Rossumc6e22901998-12-04 19:26:43 +00001054 m = Py_InitModule3("math", math_methods, module_doc);
Neal Norwitz1ac754f2006-01-19 06:09:39 +00001055 if (m == NULL)
1056 goto finally;
Barry Warsawfc93f751996-12-17 00:47:03 +00001057
Christian Heimes6f341092008-04-18 23:13:07 +00001058 PyModule_AddObject(m, "pi", PyFloat_FromDouble(Py_MATH_PI));
1059 PyModule_AddObject(m, "e", PyFloat_FromDouble(Py_MATH_E));
Barry Warsawfc93f751996-12-17 00:47:03 +00001060
Christian Heimes6f341092008-04-18 23:13:07 +00001061 finally:
Barry Warsaw9bfd2bf2000-09-01 09:01:32 +00001062 return;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001063}