From aebefbb7fbec3e02142e723fd2573aa789880892 Mon Sep 17 00:00:00 2001 From: Vedant Puri Date: Wed, 8 Feb 2023 16:59:34 -0500 Subject: [PATCH] minimum fix to make https://github.com/SciML/DiffEqBase.jl/pull/870 work --- Project.toml | 2 +- src/jacvec_operators.jl | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Project.toml b/Project.toml index 277482172..dab0a19cf 100644 --- a/Project.toml +++ b/Project.toml @@ -34,7 +34,7 @@ LoopVectorization = "0.12" NNlib = "0.6, 0.7, 0.8" Requires = "1" RuntimeGeneratedFunctions = "0.4, 0.5" -SciMLBase = "1.11" +SciMLBase = "1.83" SparseDiffTools = "1.17" StaticArrays = "0.10, 0.11, 0.12, 1.0, 1.10, 1.3.2" julia = "1.6" diff --git a/src/jacvec_operators.jl b/src/jacvec_operators.jl index 3248ec213..f2dcf355e 100644 --- a/src/jacvec_operators.jl +++ b/src/jacvec_operators.jl @@ -1,6 +1,6 @@ ### Operator Implementation mutable struct JacVecOperator{T, F, T1, T2, uType, P, tType, O} <: - DiffEqBase.AbstractDiffEqLinearOperator{T} + AbstractDiffEqLinearOperator{T} f::F cache1::T1 cache2::T2 @@ -151,7 +151,7 @@ end ### AnalyticalOperator Implementation mutable struct AnalyticalJacVecOperator{T, F, uType, P, tType, O} <: - DiffEqBase.AbstractDiffEqLinearOperator{T} + AbstractDiffEqLinearOperator{T} f::F u::uType p::P