| 502 | } |
| 503 | |
| 504 | static PyObject *Py_ops_analysis(PyObject *self, PyObject *args) |
| 505 | { |
| 506 | wrapper->resetCommandLine(PyTuple_Size(args), 1, args); |
| 507 | |
| 508 | if (OPS_Analysis() < 0) { |
| 509 | opserr<<(void*)0; |
| 510 | return NULL; |
| 511 | } |
| 512 | |
| 513 | return wrapper->getResults(); |
| 514 | } |
| 515 | |
| 516 | static PyObject *Py_ops_analyze(PyObject *self, PyObject *args) |
| 517 | { |
nothing calls this directly
no test coverage detected