* Removed deprecated stuff.
[bpt/guile.git] / libguile / numbers.h
CommitLineData
0f2d19dd
JB
1/* classes: h_files */
2
3c9a524f
DH
3#ifndef SCM_NUMBERS_H
4#define SCM_NUMBERS_H
dee01b01 5
e4b265d8 6/* Copyright (C) 1995,1996,1998,2000,2001 Free Software Foundation, Inc.
dee01b01 7 *
0f2d19dd
JB
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2, or (at your option)
11 * any later version.
dee01b01 12 *
0f2d19dd
JB
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
dee01b01 17 *
0f2d19dd
JB
18 * You should have received a copy of the GNU General Public License
19 * along with this software; see the file COPYING. If not, write to
82892bed
JB
20 * the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
21 * Boston, MA 02111-1307 USA
0f2d19dd
JB
22 *
23 * As a special exception, the Free Software Foundation gives permission
24 * for additional uses of the text contained in its release of GUILE.
25 *
26 * The exception is that, if you link the GUILE library with other files
27 * to produce an executable, this does not by itself cause the
28 * resulting executable to be covered by the GNU General Public License.
29 * Your use of that executable is in no way restricted on account of
30 * linking the GUILE library code into it.
31 *
32 * This exception does not however invalidate any other reasons why
33 * the executable file might be covered by the GNU General Public License.
34 *
35 * This exception applies only to the code released by the
36 * Free Software Foundation under the name GUILE. If you copy
37 * code from other Free Software Foundation releases into a copy of
38 * GUILE, as the General Public License permits, the exception does
39 * not apply to the code that you add in this way. To avoid misleading
40 * anyone as to the status of such modified files, you must delete
41 * this exception notice from them.
42 *
43 * If you write modifications of your own for GUILE, it is your choice
44 * whether to permit this exception to apply to your modifications.
82892bed 45 * If you do not wish that, delete this exception notice. */
d3a6bc94 46
0f2d19dd
JB
47\f
48
b4309c3c 49#include "libguile/__scm.h"
34f74fe1
MD
50#include "libguile/print.h"
51
0f2d19dd
JB
52\f
53
0f2d19dd
JB
54/* Immediate Numbers
55 *
56 * Inums are exact integer data that fits within an SCM word.
57 *
58 * SCM_INUMP applies only to values known to be Scheme objects.
59 * In particular, SCM_INUMP (SCM_CAR (x)) is valid only if x is known
3c9a524f 60 * to be a SCM_CONSP. If x is only known to be a non-immediate,
0f2d19dd
JB
61 * SCM_INUMP (SCM_CAR (x)) can give wrong answers.
62 */
63
c014a02e 64#define SCM_I_FIXNUM_BIT (SCM_LONG_BIT - 2)
1be6b49c 65#define SCM_MOST_POSITIVE_FIXNUM ((1L << (SCM_I_FIXNUM_BIT - 1)) - 1)
5c75b29f
DH
66#define SCM_MOST_NEGATIVE_FIXNUM (-SCM_MOST_POSITIVE_FIXNUM - 1)
67
68
56100716
DH
69/* SCM_SRS is signed right shift */
70#if (-1 == (((-1) << 2) + 2) >> 2)
92c2555f 71# define SCM_SRS(x, y) ((scm_t_signed_bits)(x) >> (y))
0f2d19dd 72#else
56100716
DH
73# define SCM_SRS(x, y) ((SCM_UNPACK (x) < 0) ? ~((~SCM_UNPACK (x)) >> (y)) : (SCM_UNPACK (x) >> (y)))
74#endif /* (-1 == (((-1) << 2) + 2) >> 2) */
0f2d19dd
JB
75
76
56100716
DH
77#define SCM_INUMP(x) (2 & SCM_UNPACK (x))
78#define SCM_NINUMP(x) (!SCM_INUMP (x))
79#define SCM_MAKINUM(x) (SCM_PACK (((x) << 2) + 2L))
92c2555f 80#define SCM_INUM(x) ((scm_t_signed_bits)(SCM_SRS (SCM_UNPACK (x), 2)))
0f2d19dd
JB
81
82
894a712b
DH
83/* SCM_FIXABLE is true if its long argument can be encoded in an SCM_INUM. */
84#define SCM_POSFIXABLE(n) ((n) <= SCM_MOST_POSITIVE_FIXNUM)
85#define SCM_NEGFIXABLE(n) ((n) >= SCM_MOST_NEGATIVE_FIXNUM)
86#define SCM_FIXABLE(n) (SCM_POSFIXABLE(n) && SCM_NEGFIXABLE(n))
87
88
56100716 89/* A name for 0. */
b82c6ce0 90#define SCM_INUM0 (SCM_MAKINUM (0))
0f2d19dd
JB
91
92
88eb6852
MD
93/* SCM_MAXEXP is the maximum double precision expontent
94 * SCM_FLTMAX is less than or scm_equal the largest single precision float
95 */
96
97#ifdef STDC_HEADERS
98#ifndef GO32
99#include <float.h>
100#endif /* ndef GO32 */
101#endif /* def STDC_HEADERS */
102#ifdef DBL_MAX_10_EXP
103#define SCM_MAXEXP DBL_MAX_10_EXP
104#else
105#define SCM_MAXEXP 308 /* IEEE doubles */
106#endif /* def DBL_MAX_10_EXP */
107#ifdef FLT_MAX
108#define SCM_FLTMAX FLT_MAX
109#else
110#define SCM_FLTMAX 1e+23
111#endif /* def FLT_MAX */
112
0f2d19dd 113
0f2d19dd
JB
114/* SCM_INTBUFLEN is the maximum number of characters neccessary for the
115 * printed or scm_string representation of an exact immediate.
116 */
c014a02e 117#define SCM_INTBUFLEN (5 + SCM_LONG_BIT)
0f2d19dd
JB
118
119\f
120
121/* Numbers
122 */
123
88eb6852
MD
124#define SCM_SLOPPY_INEXACTP(x) (SCM_TYP16S (x) == scm_tc16_real)
125#define SCM_SLOPPY_REALP(x) (SCM_TYP16 (x) == scm_tc16_real)
126#define SCM_SLOPPY_COMPLEXP(x) (SCM_TYP16 (x) == scm_tc16_complex)
3c9a524f
DH
127#define SCM_INEXACTP(x) (!SCM_IMP (x) && SCM_TYP16S (x) == scm_tc16_real)
128#define SCM_REALP(x) (!SCM_IMP (x) && SCM_TYP16 (x) == scm_tc16_real)
129#define SCM_COMPLEXP(x) (!SCM_IMP (x) && SCM_TYP16 (x) == scm_tc16_complex)
88eb6852 130
92c2555f
MV
131#define SCM_REAL_VALUE(x) (((scm_t_double *) SCM2PTR (x))->real)
132#define SCM_COMPLEX_MEM(x) ((scm_t_complex *) SCM_CELL_WORD_1 (x))
405aaef9
DH
133#define SCM_COMPLEX_REAL(x) (SCM_COMPLEX_MEM (x)->real)
134#define SCM_COMPLEX_IMAG(x) (SCM_COMPLEX_MEM (x)->imag)
0f2d19dd
JB
135
136/* Define SCM_BIGDIG to an integer type whose size is smaller than long if
137 * you want bignums. SCM_BIGRAD is one greater than the biggest SCM_BIGDIG.
138 *
139 * Define SCM_DIGSTOOBIG if the digits equivalent to a long won't fit in a long.
140 */
141#ifdef BIGNUMS
142# ifdef _UNICOS
143# define SCM_DIGSTOOBIG
144# if (1L << 31) <= SCM_USHRT_MAX
145# define SCM_BIGDIG unsigned short
146# else
147# define SCM_BIGDIG unsigned int
148# endif /* (1L << 31) <= USHRT_MAX */
149# define SCM_BITSPERDIG 32
150# else
151# define SCM_BIGDIG unsigned short
152# define SCM_BITSPERDIG (sizeof(SCM_BIGDIG)*SCM_CHAR_BIT)
153# endif /* def _UNICOS */
154
155# define SCM_BIGRAD (1L << SCM_BITSPERDIG)
1be6b49c
ML
156# define SCM_DIGSPERLONG ((size_t)((sizeof(long)*SCM_CHAR_BIT+SCM_BITSPERDIG-1)/SCM_BITSPERDIG))
157# define SCM_I_BIGUP(type, x) ((type)(x) << SCM_BITSPERDIG)
158# define SCM_BIGUP(x) SCM_I_BIGUP (unsigned long, x)
159# define SCM_LONGLONGBIGUP(x) SCM_I_BIGUP (unsigned long long, x)
0f2d19dd
JB
160# define SCM_BIGDN(x) ((x) >> SCM_BITSPERDIG)
161# define SCM_BIGLO(x) ((x) & (SCM_BIGRAD-1))
162#endif /* def BIGNUMS */
163
164#ifndef SCM_BIGDIG
165/* Definition is not really used but helps various function
166 * prototypes to compile with conditionalization.
167 */
168# define SCM_BIGDIG unsigned short
0f2d19dd
JB
169#endif /* ndef SCM_BIGDIG */
170
7a710745 171#define SCM_NUMBERP(x) (SCM_INUMP(x) || SCM_NUMP(x))
47457e8a 172#define SCM_NUMP(x) (!SCM_IMP(x) && (0xfcff & SCM_CELL_TYPE (x)) == scm_tc7_smob)
7272f6d8 173#define SCM_BIGP(x) (!SCM_IMP (x) && (SCM_TYP16 (x) == scm_tc16_big))
88eb6852
MD
174#define SCM_BIGSIGNFLAG 0x10000L
175#define SCM_BIGSIZEFIELD 17
47457e8a
DH
176#define SCM_BIGSIGN(x) (SCM_CELL_WORD_0 (x) & SCM_BIGSIGNFLAG)
177#define SCM_BDIGITS(x) ((SCM_BIGDIG *) (SCM_CELL_WORD_1 (x)))
6a0476fd 178#define SCM_SET_BIGNUM_BASE(n, b) (SCM_SET_CELL_WORD_1 ((n), (b)))
c014a02e 179#define SCM_NUMDIGS(x) ((size_t) (SCM_CELL_WORD_0 (x) >> SCM_BIGSIZEFIELD))
88eb6852 180#define SCM_SETNUMDIGS(x, v, sign) \
4260a7fc 181 SCM_SET_CELL_WORD_0 (x, \
88eb6852
MD
182 scm_tc16_big \
183 | ((sign) ? SCM_BIGSIGNFLAG : 0) \
f81e080b 184 | (((v) + 0L) << SCM_BIGSIZEFIELD))
88eb6852 185
0f2d19dd
JB
186\f
187
92c2555f 188typedef struct scm_t_double
0f2d19dd
JB
189{
190 SCM type;
88eb6852
MD
191 SCM pad;
192 double real;
92c2555f 193} scm_t_double;
0f2d19dd 194
92c2555f 195typedef struct scm_t_complex
0f2d19dd 196{
88eb6852
MD
197 double real;
198 double imag;
92c2555f 199} scm_t_complex;
0f2d19dd 200
0f2d19dd 201\f
0f2d19dd 202
7866a09b
GB
203extern SCM scm_exact_p (SCM x);
204extern SCM scm_odd_p (SCM n);
205extern SCM scm_even_p (SCM n);
206extern SCM scm_abs (SCM x);
207extern SCM scm_quotient (SCM x, SCM y);
208extern SCM scm_remainder (SCM x, SCM y);
209extern SCM scm_modulo (SCM x, SCM y);
210extern SCM scm_gcd (SCM x, SCM y);
211extern SCM scm_lcm (SCM n1, SCM n2);
212extern SCM scm_logand (SCM n1, SCM n2);
213extern SCM scm_logior (SCM n1, SCM n2);
214extern SCM scm_logxor (SCM n1, SCM n2);
215extern SCM scm_logtest (SCM n1, SCM n2);
216extern SCM scm_logbit_p (SCM n1, SCM n2);
217extern SCM scm_lognot (SCM n);
218extern SCM scm_integer_expt (SCM z1, SCM z2);
219extern SCM scm_ash (SCM n, SCM cnt);
220extern SCM scm_bit_extract (SCM n, SCM start, SCM end);
221extern SCM scm_logcount (SCM n);
222extern SCM scm_integer_length (SCM n);
1be6b49c
ML
223extern SCM scm_i_mkbig (size_t nlen, int sign);
224extern SCM scm_i_big2inum (SCM b, size_t l);
225extern SCM scm_i_adjbig (SCM b, size_t nlen);
226extern SCM scm_i_normbig (SCM b);
227extern SCM scm_i_copybig (SCM b, int sign);
228extern SCM scm_i_short2big (short n);
229extern SCM scm_i_ushort2big (unsigned short n);
230extern SCM scm_i_int2big (int n);
231extern SCM scm_i_uint2big (unsigned int n);
232extern SCM scm_i_long2big (long n);
233extern SCM scm_i_ulong2big (unsigned long n);
1be6b49c
ML
234extern SCM scm_i_size2big (size_t n);
235extern SCM scm_i_ptrdiff2big (ptrdiff_t n);
236
9ea8cdcb 237#ifdef HAVE_LONG_LONGS
1be6b49c
ML
238extern SCM scm_i_long_long2big (long long n);
239extern SCM scm_i_ulong_long2big (unsigned long long n);
9ea8cdcb 240#endif
1be6b49c 241
7866a09b
GB
242extern int scm_bigcomp (SCM x, SCM y);
243extern long scm_pseudolong (long x);
244extern void scm_longdigs (long x, SCM_BIGDIG digs[]);
1be6b49c
ML
245extern SCM scm_addbig (SCM_BIGDIG *x, size_t nx, int xsgn, SCM bigy, int sgny);
246extern SCM scm_mulbig (SCM_BIGDIG *x, size_t nx, SCM_BIGDIG *y, size_t ny, int sgn);
247extern unsigned int scm_divbigdig (SCM_BIGDIG *ds, size_t h, SCM_BIGDIG div);
248extern size_t scm_iint2str (long num, int rad, char *p);
7866a09b 249extern SCM scm_number_to_string (SCM x, SCM radix);
88eb6852
MD
250extern int scm_print_real (SCM sexp, SCM port, scm_print_state *pstate);
251extern int scm_print_complex (SCM sexp, SCM port, scm_print_state *pstate);
7866a09b 252extern int scm_bigprint (SCM exp, SCM port, scm_print_state *pstate);
3c9a524f 253extern SCM scm_i_mem2number (const char *mem, size_t len, unsigned int radix);
7866a09b 254extern SCM scm_string_to_number (SCM str, SCM radix);
88eb6852
MD
255extern SCM scm_make_real (double x);
256extern SCM scm_make_complex (double x, double y);
7866a09b 257extern SCM scm_bigequal (SCM x, SCM y);
88eb6852
MD
258extern SCM scm_real_equalp (SCM x, SCM y);
259extern SCM scm_complex_equalp (SCM x, SCM y);
7866a09b
GB
260extern SCM scm_number_p (SCM x);
261extern SCM scm_real_p (SCM x);
262extern SCM scm_integer_p (SCM x);
263extern SCM scm_inexact_p (SCM x);
264extern SCM scm_num_eq_p (SCM x, SCM y);
265extern SCM scm_less_p (SCM x, SCM y);
266extern SCM scm_gr_p (SCM x, SCM y);
267extern SCM scm_leq_p (SCM x, SCM y);
268extern SCM scm_geq_p (SCM x, SCM y);
269extern SCM scm_zero_p (SCM z);
270extern SCM scm_positive_p (SCM x);
271extern SCM scm_negative_p (SCM x);
272extern SCM scm_max (SCM x, SCM y);
273extern SCM scm_min (SCM x, SCM y);
274extern SCM scm_sum (SCM x, SCM y);
275extern SCM scm_difference (SCM x, SCM y);
276extern SCM scm_product (SCM x, SCM y);
277extern double scm_num2dbl (SCM a, const char * why);
278extern SCM scm_divide (SCM x, SCM y);
279extern double scm_asinh (double x);
280extern double scm_acosh (double x);
281extern double scm_atanh (double x);
282extern double scm_truncate (double x);
283extern double scm_round (double x);
7866a09b
GB
284extern SCM scm_sys_expt (SCM z1, SCM z2);
285extern SCM scm_sys_atan2 (SCM z1, SCM z2);
286extern SCM scm_make_rectangular (SCM z1, SCM z2);
287extern SCM scm_make_polar (SCM z1, SCM z2);
288extern SCM scm_real_part (SCM z);
289extern SCM scm_imag_part (SCM z);
290extern SCM scm_magnitude (SCM z);
291extern SCM scm_angle (SCM z);
3c9a524f 292extern SCM scm_exact_to_inexact (SCM z);
7866a09b
GB
293extern SCM scm_inexact_to_exact (SCM z);
294extern SCM scm_trunc (SCM x);
1be6b49c 295extern SCM scm_i_dbl2big (double d);
1be6b49c
ML
296extern double scm_i_big2dbl (SCM b);
297
1be6b49c
ML
298extern SCM scm_short2num (short n);
299extern SCM scm_ushort2num (unsigned short n);
300extern SCM scm_int2num (int n);
301extern SCM scm_uint2num (unsigned int n);
302extern SCM scm_long2num (long n);
303extern SCM scm_ulong2num (unsigned long n);
1be6b49c
ML
304extern SCM scm_size2num (size_t n);
305extern SCM scm_ptrdiff2num (ptrdiff_t n);
306extern short scm_num2short (SCM num, unsigned long int pos,
307 const char *s_caller);
308extern unsigned short scm_num2ushort (SCM num, unsigned long int pos,
309 const char *s_caller);
310extern int scm_num2int (SCM num, unsigned long int pos,
311 const char *s_caller);
312extern unsigned int scm_num2uint (SCM num, unsigned long int pos,
313 const char *s_caller);
e4b265d8
DH
314extern long scm_num2long (SCM num, unsigned long int pos,
315 const char *s_caller);
1be6b49c
ML
316extern unsigned long scm_num2ulong (SCM num, unsigned long int pos,
317 const char *s_caller);
1be6b49c
ML
318extern ptrdiff_t scm_num2ptrdiff (SCM num, unsigned long int pos,
319 const char *s_caller);
320extern size_t scm_num2size (SCM num, unsigned long int pos,
321 const char *s_caller);
9ea8cdcb 322#ifdef HAVE_LONG_LONGS
1be6b49c
ML
323extern SCM scm_long_long2num (long long sl);
324extern SCM scm_ulong_long2num (unsigned long long sl);
325extern long long scm_num2long_long (SCM num, unsigned long int pos,
7866a09b 326 const char *s_caller);
1be6b49c 327extern unsigned long long scm_num2ulong_long (SCM num, unsigned long int pos,
caf08e65 328 const char *s_caller);
9ea8cdcb 329#endif
1be6b49c 330
7866a09b 331extern void scm_init_numbers (void);
0f2d19dd 332
3c9a524f 333#endif /* SCM_NUMBERS_H */
89e00824
ML
334
335/*
336 Local Variables:
337 c-file-style: "gnu"
338 End:
339*/