Skip to content

Commit 1a52528

Browse files
Technici4nniklasschmitz
authored andcommitted
Fix DivideAndConquer in Julia 1.12
1 parent cb991bc commit 1a52528

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/eigen/lobpcg_hyper_impl.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ end
151151
# For versions < 1.12, since we mainly care about eigenvectors being orthogonal
152152
# we re-orthogonalise explicitly.
153153
@static if VERSION >= v"1.12"
154-
values, vectors = eigen(XAX; alg=DivideAndConquer())
154+
values, vectors = eigen(XAX; alg=LinearAlgebra.DivideAndConquer())
155155
return vectors[:, 1:N], values[1:N]
156156
else
157157
values, vectors = eigen(XAX)

0 commit comments

Comments
 (0)