Skip to content

Commit 0504851

Browse files
Setup backwards compat
1 parent 779976a commit 0504851

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/LinearSolve.jl

+9
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,15 @@ include("default.jl")
139139
include("init.jl")
140140
include("adjoint.jl")
141141

142+
## Deprecated, remove in July 2025
143+
144+
@static if isdefined(SciMLBase, :DiffEqArrayOperator)
145+
function defaultalg(A::SciMLBase.DiffEqArrayOperator, b,
146+
assump::OperatorAssumptions{Bool})
147+
defaultalg(A.A, b, assump)
148+
end
149+
end
150+
142151
@inline function _notsuccessful(F::LinearAlgebra.QRCompactWY)
143152
(m, n) = size(F)
144153
U = view(F.factors, 1:min(m, n), 1:n)

0 commit comments

Comments
 (0)