| 62 | } |
| 63 | |
| 64 | static PyObject* outputNames(PyAlgorithm* self) { |
| 65 | vector<string> names = self->algo->outputNames(); |
| 66 | return VectorString::toPythonCopy(&names); |
| 67 | } |
| 68 | |
| 69 | static PyObject* parameterNames(PyAlgorithm* self) { |
| 70 | vector<string> names = self->algo->defaultParameters().keys(); |
no outgoing calls
no test coverage detected