blob: 4137e60ab7af92ec22c4d4e8b96e7a834de40566 [file] [log] [blame]
Guido van Rossumf70e43a1991-02-19 12:39:46 +00001/***********************************************************
Guido van Rossumb6775db1994-08-01 11:34:53 +00002Copyright 1991, 1992, 1993, 1994 by Stichting Mathematisch Centrum,
Guido van Rossume5372401993-03-16 12:15:04 +00003Amsterdam, The Netherlands.
Guido van Rossumf70e43a1991-02-19 12:39:46 +00004
5 All Rights Reserved
6
7Permission to use, copy, modify, and distribute this software and its
8documentation for any purpose and without fee is hereby granted,
9provided that the above copyright notice appear in all copies and that
10both that copyright notice and this permission notice appear in
11supporting documentation, and that the names of Stichting Mathematisch
12Centrum or CWI not be used in advertising or publicity pertaining to
13distribution of the software without specific, written prior permission.
14
15STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO
16THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
17FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE
18FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
19WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
20ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
21OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
22
23******************************************************************/
24
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000025/* Math module -- standard C math library functions, pi and e */
26
Guido van Rossum3f5da241990-12-20 15:06:42 +000027#include "allobjects.h"
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000028
Guido van Rossum801f4731990-12-20 23:09:14 +000029#include <errno.h>
Guido van Rossum801f4731990-12-20 23:09:14 +000030
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000031#include "modsupport.h"
32
Guido van Rossum234f9421993-06-17 12:35:49 +000033#define getdoublearg(v, a) getargs(v, "d", a)
34#define get2doublearg(v, a, b) getargs(v, "(dd)", a, b)
35
Guido van Rossum3f5da241990-12-20 15:06:42 +000036#include <math.h>
37
Guido van Rossum9575a441993-04-07 14:06:14 +000038#ifdef i860
39/* Cray APP has bogus definition of HUGE_VAL in <math.h> */
40#undef HUGE_VAL
41#endif
42
Guido van Rossumb6775db1994-08-01 11:34:53 +000043#ifndef macintosh
Guido van Rossum2d709b11992-01-14 18:37:27 +000044#ifndef __STDC__
Guido van Rossumdf840d91992-03-27 17:29:44 +000045extern double fmod PROTO((double, double));
Guido van Rossum2d709b11992-01-14 18:37:27 +000046#endif
Guido van Rossumb6775db1994-08-01 11:34:53 +000047#endif
Guido van Rossum2d709b11992-01-14 18:37:27 +000048
Guido van Rossum8832b621991-12-16 15:44:24 +000049#ifdef HUGE_VAL
50#define CHECK(x) if (errno != 0) ; \
51 else if (-HUGE_VAL <= (x) && (x) <= HUGE_VAL) ; \
52 else errno = ERANGE
53#else
54#define CHECK(x) /* Don't know how to check */
55#endif
56
57static object *
58math_error()
59{
60 if (errno == EDOM)
61 err_setstr(ValueError, "math domain error");
62 else if (errno == ERANGE)
63 err_setstr(OverflowError, "math range error");
64 else
Guido van Rossum444db071992-02-26 15:26:56 +000065 err_errno(ValueError); /* Unexpected math error */
Guido van Rossum8832b621991-12-16 15:44:24 +000066 return NULL;
67}
68
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000069static object *
70math_1(args, func)
71 object *args;
72 double (*func) FPROTO((double));
73{
74 double x;
75 if (!getdoublearg(args, &x))
76 return NULL;
77 errno = 0;
78 x = (*func)(x);
Guido van Rossum8832b621991-12-16 15:44:24 +000079 CHECK(x);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000080 if (errno != 0)
Guido van Rossum8832b621991-12-16 15:44:24 +000081 return math_error();
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000082 else
83 return newfloatobject(x);
84}
85
86static object *
87math_2(args, func)
88 object *args;
89 double (*func) FPROTO((double, double));
90{
91 double x, y;
92 if (!get2doublearg(args, &x, &y))
93 return NULL;
94 errno = 0;
95 x = (*func)(x, y);
Guido van Rossum8832b621991-12-16 15:44:24 +000096 CHECK(x);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000097 if (errno != 0)
Guido van Rossum8832b621991-12-16 15:44:24 +000098 return math_error();
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000099 else
100 return newfloatobject(x);
101}
102
103#define FUNC1(stubname, func) \
104 static object * stubname(self, args) object *self, *args; { \
105 return math_1(args, func); \
106 }
107
108#define FUNC2(stubname, func) \
109 static object * stubname(self, args) object *self, *args; { \
110 return math_2(args, func); \
111 }
112
113FUNC1(math_acos, acos)
114FUNC1(math_asin, asin)
115FUNC1(math_atan, atan)
116FUNC2(math_atan2, atan2)
117FUNC1(math_ceil, ceil)
118FUNC1(math_cos, cos)
119FUNC1(math_cosh, cosh)
120FUNC1(math_exp, exp)
121FUNC1(math_fabs, fabs)
122FUNC1(math_floor, floor)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000123FUNC2(math_fmod, fmod)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000124FUNC1(math_log, log)
125FUNC1(math_log10, log10)
Guido van Rossum1492c271991-07-27 21:38:43 +0000126#ifdef MPW_3_1 /* This hack is needed for MPW 3.1 but not for 3.2 ... */
Guido van Rossum76f2f2e1991-06-24 22:23:10 +0000127FUNC2(math_pow, power)
128#else
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000129FUNC2(math_pow, pow)
Guido van Rossum76f2f2e1991-06-24 22:23:10 +0000130#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000131FUNC1(math_sin, sin)
132FUNC1(math_sinh, sinh)
133FUNC1(math_sqrt, sqrt)
134FUNC1(math_tan, tan)
135FUNC1(math_tanh, tanh)
136
Guido van Rossumb6775db1994-08-01 11:34:53 +0000137#ifndef macintosh
138
Guido van Rossum98d54331991-11-12 15:44:14 +0000139double frexp PROTO((double, int *));
140double ldexp PROTO((double, int));
141double modf PROTO((double, double *));
Guido van Rossumd18ad581991-10-24 14:57:21 +0000142
Guido van Rossumb6775db1994-08-01 11:34:53 +0000143#endif
144
Guido van Rossumd18ad581991-10-24 14:57:21 +0000145static object *
146math_frexp(self, args)
147 object *self;
148 object *args;
149{
Guido van Rossumd18ad581991-10-24 14:57:21 +0000150 double x;
151 int i;
152 if (!getdoublearg(args, &x))
153 return NULL;
154 errno = 0;
155 x = frexp(x, &i);
Guido van Rossum8832b621991-12-16 15:44:24 +0000156 CHECK(x);
Guido van Rossumd18ad581991-10-24 14:57:21 +0000157 if (errno != 0)
Guido van Rossum8832b621991-12-16 15:44:24 +0000158 return math_error();
Guido van Rossume5372401993-03-16 12:15:04 +0000159 return mkvalue("(di)", x, i);
Guido van Rossumd18ad581991-10-24 14:57:21 +0000160}
161
162static object *
163math_ldexp(self, args)
164 object *self;
165 object *args;
166{
167 double x, y;
168 /* Cheat -- allow float as second argument */
169 if (!get2doublearg(args, &x, &y))
170 return NULL;
171 errno = 0;
172 x = ldexp(x, (int)y);
Guido van Rossum8832b621991-12-16 15:44:24 +0000173 CHECK(x);
Guido van Rossumd18ad581991-10-24 14:57:21 +0000174 if (errno != 0)
Guido van Rossum8832b621991-12-16 15:44:24 +0000175 return math_error();
Guido van Rossumd18ad581991-10-24 14:57:21 +0000176 else
177 return newfloatobject(x);
178}
179
180static object *
181math_modf(self, args)
182 object *self;
183 object *args;
184{
Guido van Rossumd18ad581991-10-24 14:57:21 +0000185 double x, y;
186 if (!getdoublearg(args, &x))
187 return NULL;
188 errno = 0;
Guido van Rossumb6775db1994-08-01 11:34:53 +0000189#ifdef MPW /* MPW C modf expects pointer to extended as second argument */
190{
191 extended e;
192 x = modf(x, &e);
193 y = e;
194}
195#else
Guido van Rossumd18ad581991-10-24 14:57:21 +0000196 x = modf(x, &y);
Guido van Rossumb6775db1994-08-01 11:34:53 +0000197#endif
Guido van Rossum8832b621991-12-16 15:44:24 +0000198 CHECK(x);
Guido van Rossumd18ad581991-10-24 14:57:21 +0000199 if (errno != 0)
Guido van Rossum8832b621991-12-16 15:44:24 +0000200 return math_error();
Guido van Rossume5372401993-03-16 12:15:04 +0000201 return mkvalue("(dd)", x, y);
Guido van Rossumd18ad581991-10-24 14:57:21 +0000202}
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000203
204static struct methodlist math_methods[] = {
205 {"acos", math_acos},
206 {"asin", math_asin},
207 {"atan", math_atan},
208 {"atan2", math_atan2},
209 {"ceil", math_ceil},
210 {"cos", math_cos},
211 {"cosh", math_cosh},
212 {"exp", math_exp},
213 {"fabs", math_fabs},
214 {"floor", math_floor},
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000215 {"fmod", math_fmod},
Guido van Rossumd18ad581991-10-24 14:57:21 +0000216 {"frexp", math_frexp},
217 {"ldexp", math_ldexp},
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000218 {"log", math_log},
219 {"log10", math_log10},
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000220 {"modf", math_modf},
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000221 {"pow", math_pow},
222 {"sin", math_sin},
223 {"sinh", math_sinh},
224 {"sqrt", math_sqrt},
225 {"tan", math_tan},
226 {"tanh", math_tanh},
227 {NULL, NULL} /* sentinel */
228};
229
230void
231initmath()
232{
233 object *m, *d, *v;
Guido van Rossum738d4dd1990-10-26 14:59:30 +0000234
235 m = initmodule("math", math_methods);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000236 d = getmoduledict(m);
Guido van Rossumeb38d241990-11-18 17:36:45 +0000237 dictinsert(d, "pi", v = newfloatobject(atan(1.0) * 4.0));
238 DECREF(v);
239 dictinsert(d, "e", v = newfloatobject(exp(1.0)));
240 DECREF(v);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000241}