-
Notifications
You must be signed in to change notification settings - Fork 1
/
iterations.c
50 lines (38 loc) · 1.04 KB
/
iterations.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
#include "complex.h"
#include "Python.h"
/* Calculate the number of iterations a point takes to leave a bound. */
int iterations(double cr, double ci, int max_it) {
int i = 0;
double complex z = 0 + 0*I;
double complex c = cr + ci*I;
for (i=0; i<max_it; i++) {
z = z*z + c;
if (cabs(z) > 4)
break;
}
return i;
}
/* Wrap the C function with a Python callable. */
static PyObject *py_iterations (PyObject *self, PyObject *args) {
double x, y;
int its, max_iterations;
if (!PyArg_ParseTuple(args, "ddi", &x, &y, &max_iterations))
return NULL;
its = iterations(x, y, max_iterations);
return PyLong_FromLong((long) its);
}
/* List all methods defined by this module. */
static PyMethodDef its_methods[] = {
{"iterations", py_iterations, METH_VARARGS, NULL}, // TODO: docstrings.
{NULL, NULL} // TODO: what? why?
};
static struct PyModuleDef its_module = {
PyModuleDef_HEAD_INIT,
"iterations",
NULL,
-1,
its_methods
};
PyMODINIT_FUNC PyInit_iterations(void) {
return PyModule_Create(&its_module);
}