| 490 | } |
| 491 | |
| 492 | static PyObject *Py_ops_algorithm(PyObject *self, PyObject *args) |
| 493 | { |
| 494 | wrapper->resetCommandLine(PyTuple_Size(args), 1, args); |
| 495 | |
| 496 | if (OPS_Algorithm() < 0) { |
| 497 | opserr<<(void*)0; |
| 498 | return NULL; |
| 499 | } |
| 500 | |
| 501 | return wrapper->getResults(); |
| 502 | } |
| 503 | |
| 504 | static PyObject *Py_ops_analysis(PyObject *self, PyObject *args) |
| 505 | { |
nothing calls this directly
no test coverage detected