Skip to content
Snippets Groups Projects
Commit 95e07617 authored by Anton Akhmerov's avatar Anton Akhmerov Committed by Christoph Groth
Browse files

fix a simple bug

parent 2b40a8fd
No related branches found
No related tags found
No related merge requests found
......@@ -43,7 +43,7 @@ def factorized(A, piv_tol=1.0, sym_piv_tol=1.0):
"""
if not sp.isspmatrix_csc(A):
A = csc_matrix(A)
A = sp.csc_matrix(A)
A.sort_indices()
A = A.asfptype() #upcast to a floating point format
......
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