(self, rhs, sol)
| 9 | self.inv_mat = spla.factorized(sp.csr_matrix((vals, rows, cols))) |
| 10 | |
| 11 | def Solve(self, rhs, sol): |
| 12 | sol.FV().NumPy()[:] = self.inv_mat(rhs.FV().NumPy()) |
| 13 | |
| 14 | ngsolve.la.RegisterInverseType("superlu", SuperLU) |
no test coverage detected