| 2728 | } |
| 2729 | |
| 2730 | static PyObject *Py_ops_functionEvaluator(PyObject *self, PyObject *args) |
| 2731 | { |
| 2732 | wrapper->resetCommandLine(PyTuple_Size(args), 1, args); |
| 2733 | |
| 2734 | if (OPS_functionEvaluator() < 0) { |
| 2735 | opserr<<(void*)0; |
| 2736 | return NULL; |
| 2737 | } |
| 2738 | |
| 2739 | return wrapper->getResults(); |
| 2740 | } |
| 2741 | |
| 2742 | static PyObject *Py_ops_gradientEvaluator(PyObject *self, PyObject *args) |
| 2743 | { |
nothing calls this directly
no test coverage detected