Skip to content

Commit 14d4038

Browse files
committed
Fix formatting
1 parent 1e6fc64 commit 14d4038

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

advanced/scipy_sparse/examples/lobpcg_sakurai.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,13 @@ def sakurai(n):
4545
data = []
4646
tt = time.time()
4747
eigs, vecs, resnh = sp.sparse.linalg.lobpcg(
48-
A, X, B, tol=1e-6, largest=False, maxiter=500, retResidualNormsHistory=1,
48+
A,
49+
X,
50+
B,
51+
tol=1e-6,
52+
largest=False,
53+
maxiter=500,
54+
retResidualNormsHistory=1,
4955
)
5056
data.append(time.time() - tt)
5157
print("Results by LOBPCG for n=" + str(n))

0 commit comments

Comments
 (0)