| 358 | } |
| 359 | |
| 360 | static PyObject *Py_ops_model(PyObject *self, PyObject *args) |
| 361 | { |
| 362 | wrapper->resetCommandLine(PyTuple_Size(args), 1, args); |
| 363 | |
| 364 | if (OPS_model() < 0) { |
| 365 | opserr<<(void*)0; |
| 366 | return NULL; |
| 367 | } |
| 368 | |
| 369 | return wrapper->getResults(); |
| 370 | } |
| 371 | |
| 372 | static PyObject *Py_ops_node(PyObject *self, PyObject *args) |
| 373 | { |
nothing calls this directly
no test coverage detected