48 PyModule_AddObjectRef(
63 UnaryFunction1DVoid___doc__,
64 "Class hierarchy: :class:`UnaryFunction1D` > :class:`UnaryFunction1DVoid`\n"
66 "Base class for unary functions (functors) working on\n"
67 ":class:`Interface1D`.\n"
69 ".. method:: __init__()\n"
70 " __init__(integration_type)\n"
72 " Builds a unary 1D function using either a default constructor\n"
73 " or the integration method given as an argument.\n"
75 " :arg integration_type: An integration method.\n"
76 " :type integration_type: :class:`IntegrationType`\n");
82 static const char *kwlist[] = {
"integration",
nullptr};
83 PyObject *obj =
nullptr;
85 if (!PyArg_ParseTupleAndKeywords(
98 self->uf1D_void->py_uf1D = (PyObject *)
self;
105 delete self->uf1D_void;
111 return PyUnicode_FromFormat(
"type: %s - address: %p", Py_TYPE(
self)->tp_name,
self->uf1D_void);
118 static const char *kwlist[] = {
"inter",
nullptr};
119 PyObject *obj =
nullptr;
121 if (!PyArg_ParseTupleAndKeywords(args, kwds,
"O!", (
char **)kwlist, &
Interface1D_Type, &obj)) {
126 PyErr_SetString(PyExc_TypeError,
"__call__ method not properly overridden");
130 if (!PyErr_Occurred()) {
131 string class_name(Py_TYPE(
self)->tp_name);
132 PyErr_SetString(PyExc_RuntimeError, (class_name +
" __call__ method failed").c_str());
143 integration_type_doc,
144 "The integration method.\n"
146 ":type: :class:`IntegrationType`");
156 PyErr_SetString(PyExc_TypeError,
"value must be an IntegrationType");
167 integration_type_doc,
169 {
nullptr,
nullptr,
nullptr,
nullptr,
nullptr}
175 PyVarObject_HEAD_INIT(
nullptr, 0)
176 "UnaryFunction1DVoid",
194 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE,
195 UnaryFunction1DVoid___doc__,
PyTypeObject ChainingTimeStampF1D_Type
IntegrationType IntegrationType_from_BPy_IntegrationType(PyObject *obj)
PyObject * BPy_IntegrationType_from_IntegrationType(IntegrationType i)
PyTypeObject IncrementChainingTimeStampF1D_Type
PyTypeObject IntegrationType_Type
#define BPy_IntegrationType_Check(v)
PyTypeObject Interface1D_Type
PyTypeObject TimeStampF1D_Type
static int integration_type_set(BPy_UnaryFunction1DVoid *self, PyObject *value, void *)
static PyObject * UnaryFunction1DVoid___call__(BPy_UnaryFunction1DVoid *self, PyObject *args, PyObject *kwds)
int UnaryFunction1DVoid_Init(PyObject *module)
PyDoc_STRVAR(UnaryFunction1DVoid___doc__, "Class hierarchy: :class:`UnaryFunction1D` > :class:`UnaryFunction1DVoid`\n" "\n" "Base class for unary functions (functors) working on\n" ":class:`Interface1D`.\n" "\n" ".. method:: __init__()\n" " __init__(integration_type)\n" "\n" " Builds a unary 1D function using either a default constructor\n" " or the integration method given as an argument.\n" "\n" " :arg integration_type: An integration method.\n" " :type integration_type: :class:`IntegrationType`\n")
PyTypeObject UnaryFunction1DVoid_Type
static PyObject * integration_type_get(BPy_UnaryFunction1DVoid *self, void *)
static int UnaryFunction1DVoid___init__(BPy_UnaryFunction1DVoid *self, PyObject *args, PyObject *kwds)
static void UnaryFunction1DVoid___dealloc__(BPy_UnaryFunction1DVoid *self)
static PyGetSetDef BPy_UnaryFunction1DVoid_getseters[]
static PyObject * UnaryFunction1DVoid___repr__(BPy_UnaryFunction1DVoid *self)
PyTypeObject UnaryFunction1D_Type
static struct PyModuleDef module