| 2941 | } |
| 2942 | |
| 2943 | static PyObject *Py_ops_runFORMAnalysis(PyObject *self, PyObject *args) { |
| 2944 | wrapper->resetCommandLine(PyTuple_Size(args), 1, args); |
| 2945 | |
| 2946 | if (OPS_runFORMAnalysis() < 0) { |
| 2947 | opserr << (void *)0; |
| 2948 | return NULL; |
| 2949 | } |
| 2950 | |
| 2951 | return wrapper->getResults(); |
| 2952 | } |
| 2953 | |
| 2954 | static PyObject *Py_ops_runSORMAnalysis(PyObject *self, PyObject *args) { |
| 2955 | wrapper->resetCommandLine(PyTuple_Size(args), 1, args); |
nothing calls this directly
no test coverage detected