| 274 | } |
| 275 | |
| 276 | static PyObject *Py_ops_setStrain(PyObject *self, PyObject *args) |
| 277 | { |
| 278 | wrapper->resetCommandLine(PyTuple_Size(args), 1, args); |
| 279 | |
| 280 | if (OPS_setStrain() < 0) { |
| 281 | opserr<<(void*)0; |
| 282 | return NULL; |
| 283 | } |
| 284 | |
| 285 | return wrapper->getResults(); |
| 286 | } |
| 287 | |
| 288 | static PyObject *Py_ops_getStrain(PyObject *self, PyObject *args) |
| 289 | { |
nothing calls this directly
no test coverage detected