Skip to content

Commit 3653606

Browse files
authored
use correct upper bound for eigencopy_oftype (#176)
1 parent 32d4556 commit 3653606

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/eigenGeneral.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ if VERSION < v"1.10"
1010
LinearAlgebra.eigvals(A::UpperHessenberg{T}; kws...) where T = LinearAlgebra.eigvals!(eigencopy_oftype(A, eigtype(T)); kws...)
1111
Base.:\(H::UpperHessenberg, B::AbstractVecOrMat) = ldiv!(copy(H), copy(B))
1212
end
13-
if v"1.10" VERSION < v"1.14"
13+
if v"1.10" VERSION < v"1.14.0-DEV.2266"
1414
#otherwise the Hessenberg shortcut is not used
1515
LinearAlgebra.eigencopy_oftype(H::UpperHessenberg, S) = UpperHessenberg(LinearAlgebra.eigencopy_oftype(H.data, S))
1616
end

0 commit comments

Comments
 (0)