| 915 | } |
| 916 | |
| 917 | PyObject *ops_specifyCTest(PyObject *self, PyObject *args) |
| 918 | { |
| 919 | OPS_ResetCommandLine(PyTuple_Size(args), 0, args); |
| 920 | |
| 921 | const char *type = OPS_GetString(); |
| 922 | ConvergenceTest* theTest = OPS_ParseCTestCommand(type); |
| 923 | |
| 924 | if(theTest == 0) { |
| 925 | PyErr_SetString(PyExc_RuntimeError,"failed to create ConvergenceTest "); |
| 926 | return NULL; |
| 927 | } |
| 928 | |
| 929 | anaBuilder.set(theTest); |
| 930 | |
| 931 | Py_INCREF(Py_None); |
| 932 | return Py_None; |
| 933 | } |
| 934 | |
| 935 | PyObject *ops_analyzeModel(PyObject *self, PyObject *args) |
| 936 | { |
nothing calls this directly
no test coverage detected