Skip to content

Commit b4092c5

Browse files
committed
Typo in Lanczos
1 parent cfb961d commit b4092c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pyclassify/eigenvalues.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ def power_method_numba(A, max_iter=500, tol=1e-7, x=None):
158158
return x @ A @ x
159159

160160

161-
# @jit(nopython=True)
161+
@jit(nopython=True)
162162
def Lanczos_PRO(A, q, m=None, tol=np.sqrt(np.finfo(float).eps)):
163163
r"""
164164
Perform the Lanczos algorithm for symmetric matrices.

0 commit comments

Comments
 (0)