| 749 | } |
| 750 | |
| 751 | static PyObject *Py_ops_wipeAnalysis(PyObject *self, PyObject *args) |
| 752 | { |
| 753 | wrapper->resetCommandLine(PyTuple_Size(args), 1, args); |
| 754 | |
| 755 | if (OPS_wipeAnalysis() < 0) { |
| 756 | opserr<<(void*)0; |
| 757 | return NULL; |
| 758 | } |
| 759 | |
| 760 | return wrapper->getResults(); |
| 761 | } |
| 762 | |
| 763 | static PyObject *Py_ops_setTime(PyObject *self, PyObject *args) |
| 764 | { |
nothing calls this directly
no test coverage detected