Skip to content

Commit 282c90a

Browse files
hotfix stupid vs code
1 parent 8a8b8cb commit 282c90a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "JumpProcesses"
22
uuid = "ccbc3e58-028d-4f4c-8cd5-9ae44345cda5"
33
authors = ["Chris Rackauckas <[email protected]>"]
4-
version = "9.1.2"
4+
version = "9.1.3"
55

66
[deps]
77
ArrayInterfaceCore = "30b0a656-2188-435a-8636-2ec0e6a096e2"

src/coupling.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ function cat_problems(prob::DiffEqBase.AbstractODEProblem,
3030
if isdefined(SciMLBase, :unwrapped_f)
3131
_f_control = SciMLBase.unwrapped_f(prob_control.f)
3232
else
33-
_f_control = prob_c
33+
_f_control = prob_control.f
3434
end
3535

3636
new_f = function (du, u, p, t)
@@ -56,7 +56,7 @@ function cat_problems(prob::DiscreteProblem, prob_control::DiffEqBase.AbstractOD
5656
if isdefined(SciMLBase, :unwrapped_f)
5757
_f_control = SciMLBase.unwrapped_f(prob_control.f)
5858
else
59-
_f_control = prob_c
59+
_f_control = prob_control.f
6060
end
6161

6262
new_f = function (du, u, p, t)
@@ -95,7 +95,7 @@ function cat_problems(prob::DiffEqBase.AbstractSDEProblem,
9595
if isdefined(SciMLBase, :unwrapped_f)
9696
_f_control = SciMLBase.unwrapped_f(prob_control.f)
9797
else
98-
_f_control = prob_c
98+
_f_control = prob_control.f
9999
end
100100

101101
new_f = function (du, u, p, t)

0 commit comments

Comments
 (0)