| 67 | } |
| 68 | |
| 69 | static PyObject* parameterNames(PyAlgorithm* self) { |
| 70 | vector<string> names = self->algo->defaultParameters().keys(); |
| 71 | return VectorString::toPythonCopy(&names); |
| 72 | } |
| 73 | |
| 74 | static PyObject* configure(PyAlgorithm* self, PyObject* args, PyObject* keywds); |
| 75 | static PyObject* compute(PyAlgorithm* self, PyObject* args); |
no test coverage detected