From 122343bd77f1dafd1f750458d0c2be745c07d0e5 Mon Sep 17 00:00:00 2001 From: oscarddssmith Date: Wed, 4 Sep 2024 14:42:01 -0400 Subject: [PATCH] fix --- lib/OrdinaryDiffEqDifferentiation/src/derivative_utils.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/OrdinaryDiffEqDifferentiation/src/derivative_utils.jl b/lib/OrdinaryDiffEqDifferentiation/src/derivative_utils.jl index 6d7d6f7744..8b09e65937 100644 --- a/lib/OrdinaryDiffEqDifferentiation/src/derivative_utils.jl +++ b/lib/OrdinaryDiffEqDifferentiation/src/derivative_utils.jl @@ -393,7 +393,7 @@ function Base.:\(W::WOperator, x::Number) end function LinearSolve.defaultalg(W::WOperator, b, assump::OperatorAssumptions{Bool}) - defaultalg(W.J, b, assump) + LinearSolve.defaultalg(W.J, b, assump) end function LinearAlgebra.mul!(Y::AbstractVecOrMat, W::WOperator, B::AbstractVecOrMat)