We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 45adbd0 commit 12c7ed9Copy full SHA for 12c7ed9
src/default.jl
@@ -327,7 +327,12 @@ function defaultalg_symbol(::Type{T}) where {T}
327
Symbol(split(string(SciMLBase.parameterless_type(T)), ".")[end])
328
end
329
defaultalg_symbol(::Type{<:GenericFactorization{typeof(ldlt!)}}) = :LDLtFactorization
330
-defaultalg_symbol(::Type{<:QRFactorization{ColumnNorm}}) = :QRFactorizationPivoted
+
331
+@static if VERSION >= v"1.7"
332
+ defaultalg_symbol(::Type{<:QRFactorization{ColumnNorm}}) = :QRFactorizationPivoted
333
+else
334
+ defaultalg_symbol(::Type{<:QRFactorization{Val{true}}}) = :QRFactorizationPivoted
335
+end
336
337
"""
338
if alg.alg === DefaultAlgorithmChoice.LUFactorization
0 commit comments