Skip to content

Commit 1ae32bf

Browse files
authored
Make R field in Schur concretely typed (#92)
1 parent d8605b1 commit 1ae32bf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "GenericLinearAlgebra"
22
uuid = "14197337-ba66-59df-a3e3-ca00e7dcff7a"
3-
version = "0.3.3"
3+
version = "0.3.4"
44

55
[deps]
66
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"

src/eigenGeneral.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ Base.size(H::HessenbergFactorization, args...) = size(H.data, args...)
6262
# Schur
6363
struct Schur{T,S<:StridedMatrix} <: Factorization{T}
6464
data::S
65-
R::Rotation
65+
R::Rotation{T}
6666
end
6767

6868
function Base.getproperty(F::Schur, s::Symbol)

0 commit comments

Comments
 (0)