| 478 | } |
| 479 | |
| 480 | static PyObject *Py_ops_integrator(PyObject *self, PyObject *args) |
| 481 | { |
| 482 | wrapper->resetCommandLine(PyTuple_Size(args), 1, args); |
| 483 | |
| 484 | if (OPS_Integrator() < 0) { |
| 485 | opserr<<(void*)0; |
| 486 | return NULL; |
| 487 | } |
| 488 | |
| 489 | return wrapper->getResults(); |
| 490 | } |
| 491 | |
| 492 | static PyObject *Py_ops_algorithm(PyObject *self, PyObject *args) |
| 493 | { |
nothing calls this directly
no test coverage detected