Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "SciMLBase"
uuid = "0bca4576-84f4-4d90-8ffe-ffa030f20462"
authors = ["Chris Rackauckas <accounts@chrisrackauckas.com> and contributors"]
version = "1.14.0"
version = "1.15.0"

[deps]
ArrayInterface = "4fba245c-0d91-5ea0-9b3e-6abc04ee57a9"
Expand Down
26 changes: 26 additions & 0 deletions src/scimlfunctions.jl
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,32 @@ struct ODEFunction{iip,F,TMM,Ta,Tt,TJ,JVP,VJP,JP,SP,TW,TWt,TPJ,S,S2,O,TCV} <: Ab
colorvec::TCV
end

# Constructors are defined in DiffEqSensitivity
struct ODEForwardSensitivityFunction{iip,F,A,Tt,J,JP,S,PJ,TW,TWt,UF,PF,JC,PJC,Alg,fc,JM,pJM,MM,CV} <: AbstractODEFunction{iip}
f::F
analytic::A
tgrad::Tt
jac::J
jac_prototype::JP
sparsity::S
paramjac::PJ
Wfact::TW
Wfact_t::TWt
uf::UF
pf::PF
J::JM
pJ::pJM
jac_config::JC
paramjac_config::PJC
alg::Alg
numparams::Int
numindvar::Int
f_cache::fc
mass_matrix::MM
isautojacvec::Bool
colorvec::CV
end

"""
$(TYPEDEF)
"""
Expand Down