@@ -49,7 +49,7 @@ QR{T}(factors::AbstractMatrix, τ::AbstractVector) where {T} =
4949 QR (convert (AbstractMatrix{T}, factors), convert (AbstractVector{T}, τ))
5050# backwards-compatible constructors (remove with Julia 2.0)
5151@deprecate (QR {T,S} (factors:: AbstractMatrix{T} , τ:: AbstractVector{T} ) where {T,S},
52- QR {T,S,typeof(τ)} (factors, τ))
52+ QR {T,S,typeof(τ)} (factors, τ), false )
5353
5454# iteration for destructuring into components
5555Base. iterate (S:: QR ) = (S. Q, Val (:R ))
@@ -126,7 +126,7 @@ QRCompactWY{S}(factors::AbstractMatrix, T::AbstractMatrix) where {S} =
126126 QRCompactWY (convert (AbstractMatrix{S}, factors), convert (AbstractMatrix{S}, T))
127127# backwards-compatible constructors (remove with Julia 2.0)
128128@deprecate (QRCompactWY {S,M} (factors:: AbstractMatrix{S} , T:: AbstractMatrix{S} ) where {S,M},
129- QRCompactWY {S,M,typeof(T)} (factors, T))
129+ QRCompactWY {S,M,typeof(T)} (factors, T), false )
130130
131131# iteration for destructuring into components
132132Base. iterate (S:: QRCompactWY ) = (S. Q, Val (:R ))
@@ -219,7 +219,7 @@ QRPivoted{T}(factors::AbstractMatrix, τ::AbstractVector,
219219# backwards-compatible constructors (remove with Julia 2.0)
220220@deprecate (QRPivoted {T,S} (factors:: AbstractMatrix{T} , τ:: AbstractVector{T} ,
221221 jpvt:: AbstractVector{<:Integer} ) where {T,S},
222- QRPivoted {T,S,typeof(τ),typeof(jpvt)} (factors, τ, jpvt))
222+ QRPivoted {T,S,typeof(τ),typeof(jpvt)} (factors, τ, jpvt), false )
223223
224224# iteration for destructuring into components
225225Base. iterate (S:: QRPivoted ) = (S. Q, Val (:R ))
@@ -541,7 +541,7 @@ QRPackedQ{T}(factors::AbstractMatrix, τ::AbstractVector) where {T} =
541541 QRPackedQ (convert (AbstractMatrix{T}, factors), convert (AbstractVector{T}, τ))
542542# backwards-compatible constructors (remove with Julia 2.0)
543543@deprecate (QRPackedQ {T,S} (factors:: AbstractMatrix{T} , τ:: AbstractVector{T} ) where {T,S},
544- QRPackedQ {T,S,typeof(τ)} (factors, τ))
544+ QRPackedQ {T,S,typeof(τ)} (factors, τ), false )
545545
546546"""
547547 QRCompactWYQ <: AbstractMatrix
@@ -564,7 +564,7 @@ QRCompactWYQ{S}(factors::AbstractMatrix, T::AbstractMatrix) where {S} =
564564 QRCompactWYQ (convert (AbstractMatrix{S}, factors), convert (AbstractMatrix{S}, T))
565565# backwards-compatible constructors (remove with Julia 2.0)
566566@deprecate (QRCompactWYQ {S,M} (factors:: AbstractMatrix{S} , T:: AbstractMatrix{S} ) where {S,M},
567- QRCompactWYQ {S,M,typeof(T)} (factors, T))
567+ QRCompactWYQ {S,M,typeof(T)} (factors, T), false )
568568
569569QRPackedQ {T} (Q:: QRPackedQ ) where {T} = QRPackedQ (convert (AbstractMatrix{T}, Q. factors), convert (Vector{T}, Q. τ))
570570AbstractMatrix {T} (Q:: QRPackedQ{T} ) where {T} = Q
0 commit comments