We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b1e403 commit a2dd968Copy full SHA for a2dd968
SPEX/Python/SPEXpy/cholesky_backslash.py
@@ -33,7 +33,7 @@ def cholesky_backslash( A, b, options=Options('double', 'amd')):
33
A.tocsc()
34
## Check symmetry
35
tol=1e-8
36
- if linalg.norm(A-A.T, np.Inf) > tol:
+ if linalg.norm(A-A.T, np.inf) > tol:
37
raise SPEX_error(determine_error(-4))
38
# Check input shape
39
if A.shape[1]!=b.shape[0]:
0 commit comments