| 2262 | } |
| 2263 | |
| 2264 | static PyObject *Py_ops_computeGradients(PyObject *self, PyObject *args) |
| 2265 | { |
| 2266 | wrapper->resetCommandLine(PyTuple_Size(args), 1, args); |
| 2267 | |
| 2268 | if (OPS_computeGradients() < 0) { |
| 2269 | opserr<<(void*)0; |
| 2270 | return NULL; |
| 2271 | } |
| 2272 | |
| 2273 | return wrapper->getResults(); |
| 2274 | } |
| 2275 | |
| 2276 | static PyObject *Py_ops_sensitivityAlgorithm(PyObject *self, PyObject *args) |
| 2277 | { |
nothing calls this directly
no test coverage detected