Skip to content

Commit

Permalink
Merge pull request #74 from SciML/myb/fsense
Browse files Browse the repository at this point in the history
add ODEForwardSensitivityFunction
  • Loading branch information
YingboMa authored Jul 3, 2021
2 parents 2c8d34d + c51dd78 commit f3069b2
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
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 <[email protected]> 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

2 comments on commit f3069b2

@YingboMa
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/40175

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v1.15.0 -m "<description of version>" f3069b2ec1cf062f63cfcb807c68d6eef5494135
git push origin v1.15.0

Please sign in to comment.