summaryrefslogtreecommitdiff
path: root/mpfr/mpf2mpfr.h
blob: 99b86204d7c867e8ac3fb4f46fdfac78fad50b7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
/* mpf2mpfr.h -- Compatibility include file with mpf.

Copyright (C) 1999, 2001 Free Software Foundation, Inc.

This file is part of the MPFR Library.

The MPFR Library is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or (at your
option) any later version.

The MPFR Library 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 GNU Lesser General Public
License for more details.

You should have received a copy of the GNU Lesser General Public License
along with the MPFR Library; see the file COPYING.LIB.  If not, write to
the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
MA 02111-1307, USA. */

/* types */
#define mpf_t mpfr_t

/* functions which don't take as argument the rounding mode */
#undef mpf_ceil
#define mpf_ceil mpfr_ceil
#undef mpf_clear
#define mpf_clear mpfr_clear
#undef mpf_cmp
#define mpf_cmp mpfr_cmp
#undef mpf_cmp_si
#define mpf_cmp_si mpfr_cmp_si
#undef mpf_cmp_ui
#define mpf_cmp_ui mpfr_cmp_ui
#undef mpf_eq
#define mpf_eq mpfr_eq
#undef mpf_floor
#define mpf_floor mpfr_floor
#undef mpf_get_d
#define mpf_get_d mpfr_get_d
#undef mpf_get_prec
#define mpf_get_prec mpfr_get_prec
#undef mpf_init
#define mpf_init mpfr_init
#undef mpf_init2
#define mpf_init2 mpfr_init2
#undef mpf_random2
#define mpf_random2 mpfr_random2
#undef mpf_set_default_prec
#define mpf_set_default_prec mpfr_set_default_prec
#undef mpf_set_prec
#define mpf_set_prec(x,p) mpfr_round(x,__gmp_default_rounding_mode,p)
#undef mpf_set_prec_raw
#define mpf_set_prec_raw mpfr_set_prec_raw
#undef mpf_trunc
#define mpf_trunc mpfr_trunc
#undef mpf_sgn
#define mpf_sgn mpfr_sgn
#undef mpf_swap
#define mpf_swap mpfr_swap

/* functions which take as argument the rounding mode */
#undef mpf_abs
#define mpf_abs(x,y) mpfr_abs(x,y,__gmp_default_rounding_mode)
#undef mpf_add
#define mpf_add(x,y,z) mpfr_add(x,y,z,__gmp_default_rounding_mode)
#undef mpf_add_ui
#define mpf_add_ui(x,y,z) \
             mpfr_add_ui(x,y,z,__gmp_default_rounding_mode)
#undef mpf_div
#define mpf_div(x,y,z) mpfr_div(x,y,z,__gmp_default_rounding_mode)
#undef mpf_div_ui
#define mpf_div_ui(x,y,z) \
                          mpfr_div_ui(x,y,z,__gmp_default_rounding_mode)
#undef mpf_div_2exp
#define mpf_div_2exp(x,y,z) \
                         mpfr_div_2exp(x,y,z,__gmp_default_rounding_mode)
#undef mpf_dump
#define mpf_dump(x,y,z) \
                mpfr_dump(x,y,z,__gmp_default_rounding_mode)
#undef mpf_get_str
#define mpf_get_str(x,y,z,t,u) \
               mpfr_get_str(x,y,z,t,u,__gmp_default_rounding_mode)
#undef mpf_inp_str
#define mpf_inp_str(x,y,z) mpfr_inp_str(x,y,z,__gmp_default_rounding_mode)
#undef mpf_set_str
#define mpf_set_str(x,y,z) mpfr_set_str(x,y,z,__gmp_default_rounding_mode)
#undef mpf_init_set
#define mpf_init_set(x,y) mpfr_init_set(x,y,__gmp_default_rounding_mode)
#undef mpf_init_set_d
#define mpf_init_set_d(x,y) mpfr_init_set_d(x,y,__gmp_default_rounding_mode)
#undef mpf_init_set_si
#define mpf_init_set_si(x,y) mpfr_init_set_si(x,y,__gmp_default_rounding_mode)
#undef mpf_init_set_str
#define mpf_init_set_str(x,y,z) mpfr_init_set_str(x,y,z,__gmp_default_rounding_mode)
#undef mpf_init_set_ui
#define mpf_init_set_ui(x,y) mpfr_init_set_ui(x,y,__gmp_default_rounding_mode)
#undef mpf_mul
#define mpf_mul(x,y,z) mpfr_mul(x,y,z,__gmp_default_rounding_mode)
#undef mpf_mul_2exp
#define mpf_mul_2exp(x,y,z) mpfr_mul_2exp(x,y,z,__gmp_default_rounding_mode)
#undef mpf_mul_ui
#define mpf_mul_ui(x,y,z) mpfr_mul_ui(x,y,z,__gmp_default_rounding_mode)
#undef mpf_neg
#define mpf_neg(x,y) mpfr_neg(x,y,__gmp_default_rounding_mode)
#undef mpf_out_str
#define mpf_out_str(x,y,z,t) mpfr_out_str(x,y,z,t,__gmp_default_rounding_mode)
#undef mpf_pow_ui
#define mpf_pow_ui(x,y,z) mpfr_pow_ui(x,y,z,__gmp_default_rounding_mode)
#undef mpf_reldiff
#define mpf_reldiff(x,y,z) mpfr_reldiff(x,y,z,__gmp_default_rounding_mode)
#undef mpf_set
#define mpf_set(x,y) mpfr_set(x,y,__gmp_default_rounding_mode)
#undef mpf_set_d
#define mpf_set_d(x,y) mpfr_set_d(x,y,__gmp_default_rounding_mode)
#undef mpf_set_q
#define mpf_set_q(x,y) mpfr_set_q(x,y,__gmp_default_rounding_mode)
#undef mpf_set_si
#define mpf_set_si(x,y) mpfr_set_si(x,y,__gmp_default_rounding_mode)
#undef mpf_set_ui
#define mpf_set_ui(x,y) mpfr_set_ui(x,y,__gmp_default_rounding_mode)
#undef mpf_set_z
#define mpf_set_z(x,y) mpfr_set_z(x,y,__gmp_default_rounding_mode)
#undef mpf_sqrt
#define mpf_sqrt(x,y) mpfr_sqrt(x,y,__gmp_default_rounding_mode)
#undef mpf_sqrt_ui
#define mpf_sqrt_ui(x,y) mpfr_sqrt_ui(x,y,__gmp_default_rounding_mode)
#undef mpf_sub
#define mpf_sub(x,y,z) mpfr_sub(x,y,z,__gmp_default_rounding_mode)
#undef mpf_sub_ui
#define mpf_sub_ui(x,y,z) mpfr_sub_ui(x,y,z,__gmp_default_rounding_mode)
#undef mpf_ui_div
#define mpf_ui_div(x,y,z) mpfr_ui_div(x,y,z,__gmp_default_rounding_mode)
#undef mpf_ui_sub
#define mpf_ui_sub(x,y,z) mpfr_ui_sub(x,y,z,__gmp_default_rounding_mode)
#undef mpf_urandomb
#define mpf_urandomb(x,y,n) mpfr_urandomb(x,y)