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
|
/* Written by Charles Harris charles.harris@sdl.usu.edu */
/* Modifications by Travis Oliphant to separate Python code from C
routines */
#include "Python.h"
#include <setjmp.h>
typedef struct {
int funcalls;
int iterations;
int error_num;
PyObject *function;
PyObject *args;
jmp_buf env;
} scipy_zeros_parameters;
/*
* Storage for the relative precision of doubles. This is computed when the module
* is initialized.
*/
#include "Zeros/zeros.h"
#define SIGNERR -1
#define CONVERR -2
static double
scipy_zeros_functions_func(double x, void *params)
{
scipy_zeros_parameters *myparams = params;
PyObject *args, *f, *retval=NULL;
double val;
args = myparams->args;
f = myparams->function;
PyTuple_SetItem(args, 0, Py_BuildValue("d",x));
retval=PyObject_CallObject(f,args);
if (retval == NULL) {
longjmp(myparams->env, 1);
}
val = PyFloat_AsDouble(retval);
Py_XDECREF(retval);
return val;
}
/*
* Helper function that calls a Python function with extended arguments
*/
static PyObject *
call_solver(solver_type solver, PyObject *self, PyObject *args)
{
double a,b,xtol,rtol,zero;
int iter,i, len, fulloutput, disp=1, flag=0;
scipy_zeros_parameters params;
jmp_buf env;
PyObject *f, *xargs, *item, *fargs=NULL;
if (!PyArg_ParseTuple(args, "OddddiOi|i",
&f, &a, &b, &xtol, &rtol, &iter, &xargs, &fulloutput, &disp))
{
PyErr_SetString(PyExc_RuntimeError, "Unable to parse arguments");
return NULL;
}
if (xtol < 0) {
PyErr_SetString(PyExc_ValueError, "xtol must be >= 0");
return NULL;
}
if (iter < 0) {
PyErr_SetString(PyExc_ValueError, "maxiter should be > 0");
return NULL;
}
len = PyTuple_Size(xargs);
/* Make room for the double as first argument */
fargs = PyTuple_New(len + 1);
if (fargs == NULL) {
PyErr_SetString(PyExc_RuntimeError,
"Failed to allocate argument tuple");
return NULL;
}
for (i = 0; i < len; i++) {
item = PyTuple_GetItem(xargs, i);
if (item == NULL) {
Py_DECREF(fargs);
return NULL;
}
Py_INCREF(item);
PyTuple_SET_ITEM(fargs, i+1, item);
}
params.function = f;
params.args = fargs;
if (!setjmp(env)) {
/* direct return */
memcpy(params.env, env, sizeof(jmp_buf));
params.error_num = 0;
zero = solver(scipy_zeros_functions_func, a, b,
xtol, rtol, iter, (default_parameters*)¶ms);
Py_DECREF(fargs);
if (params.error_num != 0) {
if (params.error_num == SIGNERR) {
PyErr_SetString(PyExc_ValueError,
"f(a) and f(b) must have different signs");
return NULL;
}
if (params.error_num == CONVERR) {
if (disp) {
char msg[100];
PyOS_snprintf(msg, sizeof(msg),
"Failed to converge after %d iterations.",
params.iterations);
PyErr_SetString(PyExc_RuntimeError, msg);
flag = 1;
return NULL;
}
}
}
if (fulloutput) {
return Py_BuildValue("diii",
zero, params.funcalls, params.iterations, flag);
}
else {
return Py_BuildValue("d", zero);
}
}
else {
/* error return from Python function */
Py_DECREF(fargs);
return NULL;
}
}
/*
* These routines interface with the solvers through call_solver
*/
static PyObject *
_bisect(PyObject *self, PyObject *args)
{
return call_solver(bisect,self,args);
}
static PyObject *
_ridder(PyObject *self, PyObject *args)
{
return call_solver(ridder,self,args);
}
static PyObject *
_brenth(PyObject *self, PyObject *args)
{
return call_solver(brenth,self,args);
}
static PyObject *
_brentq(PyObject *self, PyObject *args)
{
return call_solver(brentq,self,args);
}
/*
* Standard Python module inteface
*/
static PyMethodDef
Zerosmethods[] = {
{"_bisect", _bisect, METH_VARARGS, "a"},
{"_ridder", _ridder, METH_VARARGS, "a"},
{"_brenth", _brenth, METH_VARARGS, "a"},
{"_brentq", _brentq, METH_VARARGS, "a"},
{NULL, NULL}
};
#if PY_VERSION_HEX >= 0x03000000
static struct PyModuleDef moduledef = {
PyModuleDef_HEAD_INIT,
"_zeros",
NULL,
-1,
Zerosmethods,
NULL,
NULL,
NULL,
NULL
};
PyObject *PyInit__zeros(void)
{
PyObject *m;
m = PyModule_Create(&moduledef);
return m;
}
#else
PyMODINIT_FUNC init_zeros(void)
{
Py_InitModule("_zeros", Zerosmethods);
}
#endif
|