forked from aleaxit/gmpy
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgmpy2_const.c
213 lines (173 loc) · 7.17 KB
/
gmpy2_const.c
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* gmpy2_const.c *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Python interface to the GMP or MPIR, MPFR, and MPC multiple precision *
* libraries. *
* *
* Copyright 2000 - 2009 Alex Martelli *
* *
* Copyright 2008 - 2021 Case Van Horsen *
* *
* This file is part of GMPY2. *
* *
* GMPY2 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 3 of the License, or (at your *
* option) any later version. *
* *
* GMPY2 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 GMPY2; if not, see <http://www.gnu.org/licenses/> *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
PyDoc_STRVAR(GMPy_doc_function_const_pi,
"const_pi([precision=0]) -> number\n\n"
"Return the constant pi using the specified precision. If no\n"
"precision is specified, the default precision is used.");
static PyObject *
GMPy_Function_Const_Pi(PyObject *self, PyObject *args, PyObject *keywds)
{
MPFR_Object *result = NULL;
mpfr_prec_t bits = 0;
static char *kwlist[] = {"precision", NULL};
CTXT_Object *context = NULL;
CHECK_CONTEXT(context);
if (!PyArg_ParseTupleAndKeywords(args, keywds, "|l", kwlist, &bits)) {
return NULL;
}
if ((result = GMPy_MPFR_New(bits, context))) {
mpfr_clear_flags();
result->rc = mpfr_const_pi(result->f, GET_MPFR_ROUND(context));
_GMPy_MPFR_Cleanup(&result, context);
}
return (PyObject*)result;
}
PyDoc_STRVAR(GMPy_doc_context_const_pi,
"context.const_pi() -> number\n\n"
"Return the constant pi using the context's precision.");
static PyObject *
GMPy_Context_Const_Pi(PyObject *self, PyObject *args)
{
MPFR_Object *result = NULL;
CTXT_Object *context = (CTXT_Object*)self;
if ((result = GMPy_MPFR_New(0, context))) {
mpfr_clear_flags();
result->rc = mpfr_const_pi(result->f, GET_MPFR_ROUND(context));
_GMPy_MPFR_Cleanup(&result, context);
}
return (PyObject*)result;
}
PyDoc_STRVAR(GMPy_doc_function_const_euler,
"const_euler([precision=0]) -> number\n\n"
"Return the euler constant using the specified precision. If no\n"
"precision is specified, the default precision is used.");
static PyObject *
GMPy_Function_Const_Euler(PyObject *self, PyObject *args, PyObject *keywds)
{
MPFR_Object *result = NULL;
mpfr_prec_t bits = 0;
static char *kwlist[] = {"precision", NULL};
CTXT_Object *context = NULL;
CHECK_CONTEXT(context);
if (!PyArg_ParseTupleAndKeywords(args, keywds, "|l", kwlist, &bits)) {
return NULL;
}
if ((result = GMPy_MPFR_New(bits, context))) {
mpfr_clear_flags();
result->rc = mpfr_const_euler(result->f, GET_MPFR_ROUND(context));
_GMPy_MPFR_Cleanup(&result, context);
}
return (PyObject*)result;
}
PyDoc_STRVAR(GMPy_doc_context_const_euler,
"context.const_euler() -> number\n\n"
"Return the euler constant using the context's precision.");
static PyObject *
GMPy_Context_Const_Euler(PyObject *self, PyObject *args)
{
MPFR_Object *result = NULL;
CTXT_Object *context = (CTXT_Object*)self;
if ((result = GMPy_MPFR_New(0, context))) {
mpfr_clear_flags();
result->rc = mpfr_const_euler(result->f, GET_MPFR_ROUND(context));
_GMPy_MPFR_Cleanup(&result, context);
}
return (PyObject*)result;
}
PyDoc_STRVAR(GMPy_doc_function_const_log2,
"const_log2([precision=0]) -> number\n\n"
"Return the log2 constant using the specified precision. If no\n"
"precision is specified, the default precision is used.");
static PyObject *
GMPy_Function_Const_Log2(PyObject *self, PyObject *args, PyObject *keywds)
{
MPFR_Object *result = NULL;
mpfr_prec_t bits = 0;
static char *kwlist[] = {"precision", NULL};
CTXT_Object *context = NULL;
CHECK_CONTEXT(context);
if (!PyArg_ParseTupleAndKeywords(args, keywds, "|l", kwlist, &bits)) {
return NULL;
}
if ((result = GMPy_MPFR_New(bits, context))) {
mpfr_clear_flags();
result->rc = mpfr_const_log2(result->f, GET_MPFR_ROUND(context));
_GMPy_MPFR_Cleanup(&result, context);
}
return (PyObject*)result;
}
PyDoc_STRVAR(GMPy_doc_context_const_log2,
"context.const_log2() -> number\n\n"
"Return the log2 constant using the context's precision.");
static PyObject *
GMPy_Context_Const_Log2(PyObject *self, PyObject *args)
{
MPFR_Object *result = NULL;
CTXT_Object *context = (CTXT_Object*)self;
if ((result = GMPy_MPFR_New(0, context))) {
mpfr_clear_flags();
result->rc = mpfr_const_log2(result->f, GET_MPFR_ROUND(context));
_GMPy_MPFR_Cleanup(&result, context);
}
return (PyObject*)result;
}
PyDoc_STRVAR(GMPy_doc_function_const_catalan,
"const_catalan([precision=0]) -> number\n\n"
"Return the catalan constant using the specified precision. If no\n"
"precision is specified, the default precision is used.");
static PyObject *
GMPy_Function_Const_Catalan(PyObject *self, PyObject *args, PyObject *keywds)
{
MPFR_Object *result = NULL;
mpfr_prec_t bits = 0;
static char *kwlist[] = {"precision", NULL};
CTXT_Object *context = NULL;
CHECK_CONTEXT(context);
if (!PyArg_ParseTupleAndKeywords(args, keywds, "|l", kwlist, &bits)) {
return NULL;
}
if ((result = GMPy_MPFR_New(bits, context))) {
mpfr_clear_flags();
result->rc = mpfr_const_catalan(result->f, GET_MPFR_ROUND(context));
_GMPy_MPFR_Cleanup(&result, context);
}
return (PyObject*)result;
}
PyDoc_STRVAR(GMPy_doc_context_const_catalan,
"context.const_catalan() -> number\n\n"
"Return the catalan constant using the context's precision.");
static PyObject *
GMPy_Context_Const_Catalan(PyObject *self, PyObject *args)
{
MPFR_Object *result = NULL;
CTXT_Object *context = (CTXT_Object*)self;
if ((result = GMPy_MPFR_New(0, context))) {
mpfr_clear_flags();
result->rc = mpfr_const_catalan(result->f, GET_MPFR_ROUND(context));
_GMPy_MPFR_Cleanup(&result, context);
}
return (PyObject*)result;
}