///////////////////////////////////////// // Python wrapper functions //////////// ////////////////////////////////////////
| 250 | /////// Python wrapper functions //////////// |
| 251 | ///////////////////////////////////////////// |
| 252 | static PyObject *Py_ops_UniaxialMaterial(PyObject *self, PyObject *args) |
| 253 | { |
| 254 | wrapper->resetCommandLine(PyTuple_Size(args), 1, args); |
| 255 | |
| 256 | if (OPS_UniaxialMaterial() < 0) { |
| 257 | opserr<<(void*)0; |
| 258 | return NULL; |
| 259 | } |
| 260 | |
| 261 | return wrapper->getResults(); |
| 262 | } |
| 263 | |
| 264 | static PyObject *Py_ops_testUniaxialMaterial(PyObject *self, PyObject *args) |
| 265 | { |
nothing calls this directly
no test coverage detected