| 1277 | } |
| 1278 | |
| 1279 | static PyObject *Py_ops_getPatterns(PyObject *self, PyObject *args) |
| 1280 | { |
| 1281 | wrapper->resetCommandLine(PyTuple_Size(args), 1, args); |
| 1282 | |
| 1283 | if (OPS_getPatterns() < 0) { |
| 1284 | opserr<<(void*)0; |
| 1285 | return NULL; |
| 1286 | } |
| 1287 | |
| 1288 | return wrapper->getResults(); |
| 1289 | } |
| 1290 | |
| 1291 | static PyObject *Py_ops_getFixedNodes(PyObject *self, PyObject *args) |
| 1292 | { |
nothing calls this directly
no test coverage detected