Commit a78c169b authored by Tomáš Oberhuber's avatar Tomáš Oberhuber
Browse files

Removing performSORIteration from PyTNL matrix interaface.

parent b9fb9066
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -149,7 +149,7 @@ void export_Matrix( py::module & m, const char* name )
      // TODO: these two don't work
      //.def("addMatrix",           &Matrix::addMatrix)
      //.def("getTransposition",    &Matrix::getTransposition)
      .def("performSORIteration", &Matrix::template performSORIteration< VectorType, VectorType >)
      //.def("performSORIteration", &Matrix::template performSORIteration< VectorType, VectorType >)
      // TODO: export for more types
      .def("assign", []( Matrix& matrix, const Matrix& other ) -> Matrix& {
               return matrix = other;