| 917 | } |
| 918 | |
| 919 | static PyObject *Py_ops_reset(PyObject *self, PyObject *args) |
| 920 | { |
| 921 | wrapper->resetCommandLine(PyTuple_Size(args), 1, args); |
| 922 | |
| 923 | if (OPS_resetModel() < 0) { |
| 924 | opserr<<(void*)0; |
| 925 | return NULL; |
| 926 | } |
| 927 | |
| 928 | return wrapper->getResults(); |
| 929 | } |
| 930 | |
| 931 | static PyObject *Py_ops_initialize(PyObject *self, PyObject *args) |
| 932 | { |
nothing calls this directly
no test coverage detected