| 1229 | } |
| 1230 | |
| 1231 | static PyObject *Py_ops_setNodeAccel(PyObject *self, PyObject *args) |
| 1232 | { |
| 1233 | wrapper->resetCommandLine(PyTuple_Size(args), 1, args); |
| 1234 | |
| 1235 | if (OPS_setNodeAccel() < 0) { |
| 1236 | opserr<<(void*)0; |
| 1237 | return NULL; |
| 1238 | } |
| 1239 | |
| 1240 | return wrapper->getResults(); |
| 1241 | } |
| 1242 | |
| 1243 | static PyObject *Py_ops_nodeResponse(PyObject *self, PyObject *args) |
| 1244 | { |
nothing calls this directly
no test coverage detected