| 430 | } |
| 431 | |
| 432 | static PyObject *Py_ops_nodalLoad(PyObject *self, PyObject *args) |
| 433 | { |
| 434 | wrapper->resetCommandLine(PyTuple_Size(args), 1, args); |
| 435 | |
| 436 | if (OPS_NodalLoad() < 0) { |
| 437 | opserr<<(void*)0; |
| 438 | return NULL; |
| 439 | } |
| 440 | |
| 441 | return wrapper->getResults(); |
| 442 | } |
| 443 | |
| 444 | static PyObject *Py_ops_system(PyObject *self, PyObject *args) |
| 445 | { |
nothing calls this directly
no test coverage detected