Skip to content
Snippets Groups Projects
Commit a78c169b authored by Tomáš Oberhuber's avatar Tomáš Oberhuber
Browse files

Removing performSORIteration from PyTNL matrix interaface.

parent b9fb9066
No related branches found
No related tags found
1 merge request!116Documentation for linear solvers and preconditioners
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment