We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 779976a commit 0504851Copy full SHA for 0504851
src/LinearSolve.jl
@@ -139,6 +139,15 @@ include("default.jl")
139
include("init.jl")
140
include("adjoint.jl")
141
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
151
@inline function _notsuccessful(F::LinearAlgebra.QRCompactWY)
152
(m, n) = size(F)
153
U = view(F.factors, 1:min(m, n), 1:n)
0 commit comments