| 2917 | } |
| 2918 | |
| 2919 | static PyObject *Py_ops_findDesignPoint(PyObject *self, |
| 2920 | PyObject *args) { |
| 2921 | wrapper->resetCommandLine(PyTuple_Size(args), 1, args); |
| 2922 | |
| 2923 | if (OPS_findDesignPoint() < 0) { |
| 2924 | opserr << (void *)0; |
| 2925 | return NULL; |
| 2926 | } |
| 2927 | |
| 2928 | return wrapper->getResults(); |
| 2929 | } |
| 2930 | |
| 2931 | static PyObject *Py_ops_findCurvatures(PyObject *self, |
| 2932 | PyObject *args) { |
nothing calls this directly
no test coverage detected