Skip to content

Commit

Permalink
Update operators.py
Browse files Browse the repository at this point in the history
  • Loading branch information
loganbvh committed Sep 23, 2023
1 parent 2ab71ca commit 5069a65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tdgl/finite_volume/operators.py
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ def build_operators(self) -> None:
self.mu_gradient = csr_matrix(self.mu_gradient)
self.divergence = csr_matrix(self.divergence)
# self.mu_laplacian_lu = factorized(self.mu_laplacian)
self.mu_laplacian_lu = sp.linalg.factorize(self.mu_laplacian)
self.mu_laplacian_lu = sp.linalg.factorized(self.mu_laplacian)
self.areas = cupy.array(self.areas)
self.edge_directions = cupy.array(self.edge_directions)
elif self.sparse_solver is SparseSolver.PARDISO:
Expand Down

0 comments on commit 5069a65

Please sign in to comment.