| 807 | } |
| 808 | |
| 809 | PyObject *ops_specifyNumberer(PyObject *self, PyObject *args) |
| 810 | { |
| 811 | OPS_ResetCommandLine(PyTuple_Size(args), 0, args); |
| 812 | |
| 813 | const char *type = OPS_GetString(); |
| 814 | DOF_Numberer* theNumberer = OPS_ParseNumbererCommand(type); |
| 815 | |
| 816 | if(theNumberer == 0) { |
| 817 | PyErr_SetString(PyExc_RuntimeError,"failed to create Numberer "); |
| 818 | return NULL; |
| 819 | } |
| 820 | |
| 821 | anaBuilder.set(theNumberer); |
| 822 | |
| 823 | Py_INCREF(Py_None); |
| 824 | return Py_None; |
| 825 | } |
| 826 | |
| 827 | PyObject *ops_specifyConstraintHandler(PyObject *self, PyObject *args) |
| 828 | { |
nothing calls this directly
no test coverage detected