From 282c90ace541bf00f6dbb542e66657e194ff4980 Mon Sep 17 00:00:00 2001 From: Chris Rackauckas Date: Tue, 23 Aug 2022 08:57:06 -0400 Subject: [PATCH] hotfix stupid vs code --- Project.toml | 2 +- src/coupling.jl | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Project.toml b/Project.toml index 1b3239ff..056b6a72 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "JumpProcesses" uuid = "ccbc3e58-028d-4f4c-8cd5-9ae44345cda5" authors = ["Chris Rackauckas "] -version = "9.1.2" +version = "9.1.3" [deps] ArrayInterfaceCore = "30b0a656-2188-435a-8636-2ec0e6a096e2" diff --git a/src/coupling.jl b/src/coupling.jl index 98c8abf6..00226f16 100644 --- a/src/coupling.jl +++ b/src/coupling.jl @@ -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) @@ -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) @@ -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)