Skip to content

Commit

Permalink
undid wrong fix
Browse files Browse the repository at this point in the history
  • Loading branch information
reykboerner committed Oct 16, 2024
1 parent 4e8366c commit 727740f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/CriticalTransitions.jl
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ using StochasticDiffEq:
u_modified!
using DynamicalSystemsBase:
DynamicalSystemsBase,
ContinuousTimeDynamicalSystem,
CoupledSDEs,
CoupledODEs,
dynamic_rule,
Expand Down
2 changes: 1 addition & 1 deletion src/RateSystem.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

function RateSystem(tni,tnf,f,λ,p_λ,initvals)
func(u,p,t) = combined_system(u,t,tni,tnf,f,λ,p_λ);
return ContinuousTimeDynamicalSystem(func, initvals, Float64[], t0=tni)
return CoupledODEs(func, initvals, Float64[], t0=tni)
end

function combined_system(u,t,tni,tnf,f,λ,p_λ)
Expand Down

0 comments on commit 727740f

Please sign in to comment.