Skip to content

Commit

Permalink
hotfix stupid vs code
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas committed Aug 23, 2022
1 parent 8a8b8cb commit 282c90a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "JumpProcesses"
uuid = "ccbc3e58-028d-4f4c-8cd5-9ae44345cda5"
authors = ["Chris Rackauckas <[email protected]>"]
version = "9.1.2"
version = "9.1.3"

[deps]
ArrayInterfaceCore = "30b0a656-2188-435a-8636-2ec0e6a096e2"
Expand Down
6 changes: 3 additions & 3 deletions src/coupling.jl
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ function cat_problems(prob::DiffEqBase.AbstractODEProblem,
if isdefined(SciMLBase, :unwrapped_f)
_f_control = SciMLBase.unwrapped_f(prob_control.f)
else
_f_control = prob_c
_f_control = prob_control.f
end

new_f = function (du, u, p, t)
Expand All @@ -56,7 +56,7 @@ function cat_problems(prob::DiscreteProblem, prob_control::DiffEqBase.AbstractOD
if isdefined(SciMLBase, :unwrapped_f)
_f_control = SciMLBase.unwrapped_f(prob_control.f)
else
_f_control = prob_c
_f_control = prob_control.f
end

new_f = function (du, u, p, t)
Expand Down Expand Up @@ -95,7 +95,7 @@ function cat_problems(prob::DiffEqBase.AbstractSDEProblem,
if isdefined(SciMLBase, :unwrapped_f)
_f_control = SciMLBase.unwrapped_f(prob_control.f)
else
_f_control = prob_c
_f_control = prob_control.f
end

new_f = function (du, u, p, t)
Expand Down

0 comments on commit 282c90a

Please sign in to comment.