| 346 | } |
| 347 | |
| 348 | static PyObject *Py_ops_wipeReliability(PyObject *self, PyObject *args) |
| 349 | { |
| 350 | wrapper->resetCommandLine(PyTuple_Size(args), 1, args); |
| 351 | |
| 352 | if (OPS_wipeReliability() < 0) { |
| 353 | opserr<<(void*)0; |
| 354 | return NULL; |
| 355 | } |
| 356 | |
| 357 | return wrapper->getResults(); |
| 358 | } |
| 359 | |
| 360 | static PyObject *Py_ops_model(PyObject *self, PyObject *args) |
| 361 | { |
nothing calls this directly
no test coverage detected