2001-03-12 00:04:52 +00:00
|
|
|
/*
|
|
|
|
* IBM Accurate Mathematical Library
|
2002-08-20 21:51:55 +00:00
|
|
|
* Written by International Business Machines Corp.
|
2013-01-02 19:01:50 +00:00
|
|
|
* Copyright (C) 2001-2013 Free Software Foundation, Inc.
|
2001-03-12 00:04:52 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
2002-08-26 22:40:48 +00:00
|
|
|
* the Free Software Foundation; either version 2.1 of the License, or
|
2001-03-12 00:04:52 +00:00
|
|
|
* (at your option) any later version.
|
2001-03-12 07:57:09 +00:00
|
|
|
*
|
2001-03-12 00:04:52 +00:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2002-08-20 21:51:55 +00:00
|
|
|
* GNU Lesser General Public License for more details.
|
2001-03-12 00:04:52 +00:00
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
2012-02-09 23:18:22 +00:00
|
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
2001-03-12 00:04:52 +00:00
|
|
|
*/
|
2002-08-20 21:51:55 +00:00
|
|
|
|
2001-03-12 00:04:52 +00:00
|
|
|
/************************************************************************/
|
|
|
|
/* MODULE_NAME: mpa.h */
|
|
|
|
/* */
|
|
|
|
/* FUNCTIONS: */
|
|
|
|
/* mcr */
|
|
|
|
/* acr */
|
|
|
|
/* cpy */
|
|
|
|
/* mp_dbl */
|
|
|
|
/* dbl_mp */
|
|
|
|
/* add */
|
|
|
|
/* sub */
|
|
|
|
/* mul */
|
|
|
|
/* dvd */
|
|
|
|
/* */
|
|
|
|
/* Arithmetic functions for multiple precision numbers. */
|
|
|
|
/* Common types and definition */
|
|
|
|
/************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct {/* This structure holds the details of a multi-precision */
|
|
|
|
int e; /* floating point number, x: d[0] holds its sign (-1,0 or 1) */
|
|
|
|
double d[40]; /* e holds its exponent (...,-2,-1,0,1,2,...) and */
|
|
|
|
} mp_no; /* d[1]...d[p] hold its mantissa digits. The value of x is, */
|
2011-10-25 00:19:17 +00:00
|
|
|
/* x = d[1]*r**(e-1) + d[2]*r**(e-2) + ... + d[p]*r**(e-p). */
|
|
|
|
/* Here r = 2**24, 0 <= d[i] < r and 1 <= p <= 32. */
|
|
|
|
/* p is a global variable. A multi-precision number is */
|
|
|
|
/* always normalized. Namely, d[1] > 0. An exception is */
|
|
|
|
/* a zero which is characterized by d[0] = 0. The terms */
|
|
|
|
/* d[p+1], d[p+2], ... of a none zero number have no */
|
|
|
|
/* significance and so are the terms e, d[1],d[2],... */
|
|
|
|
/* of a zero. */
|
2001-03-12 00:04:52 +00:00
|
|
|
|
|
|
|
typedef union { int i[2]; double d; } number;
|
|
|
|
|
2012-12-27 15:13:24 +00:00
|
|
|
extern const mp_no mpone;
|
2012-12-21 03:45:10 +00:00
|
|
|
extern const mp_no mptwo;
|
2012-12-27 15:13:24 +00:00
|
|
|
|
2001-03-12 00:04:52 +00:00
|
|
|
#define X x->d
|
|
|
|
#define Y y->d
|
|
|
|
#define Z z->d
|
|
|
|
#define EX x->e
|
|
|
|
#define EY y->e
|
|
|
|
#define EZ z->e
|
|
|
|
|
|
|
|
#define ABS(x) ((x) < 0 ? -(x) : (x))
|
|
|
|
|
2011-10-25 04:56:33 +00:00
|
|
|
int __acr(const mp_no *, const mp_no *, int);
|
2001-03-13 02:01:34 +00:00
|
|
|
void __cpy(const mp_no *, mp_no *, int);
|
2001-03-12 07:57:09 +00:00
|
|
|
void __mp_dbl(const mp_no *, double *, int);
|
2001-03-13 02:01:34 +00:00
|
|
|
void __dbl_mp(double, mp_no *, int);
|
|
|
|
void __add(const mp_no *, const mp_no *, mp_no *, int);
|
|
|
|
void __sub(const mp_no *, const mp_no *, mp_no *, int);
|
|
|
|
void __mul(const mp_no *, const mp_no *, mp_no *, int);
|
|
|
|
void __dvd(const mp_no *, const mp_no *, mp_no *, int);
|
2001-10-29 17:24:29 +00:00
|
|
|
|
|
|
|
extern void __mpatan (mp_no *, mp_no *, int);
|
|
|
|
extern void __mpatan2 (mp_no *, mp_no *, mp_no *, int);
|
|
|
|
extern void __mpsqrt (mp_no *, mp_no *, int);
|
2013-01-04 09:24:46 +00:00
|
|
|
extern void __mpexp (mp_no *, mp_no *, int);
|
2001-10-29 17:24:29 +00:00
|
|
|
extern void __c32 (mp_no *, mp_no *, mp_no *, int);
|
|
|
|
extern int __mpranred (double, mp_no *, int);
|