Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacsas committed Nov 8, 2021
1 parent 0fac2cc commit f0c8c6f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/reactionsystem.jl
Original file line number Diff line number Diff line change
Expand Up @@ -684,7 +684,7 @@ function Base.convert(::Type{<:SDESystem}, rs::ReactionSystem;
(noise_scaling===nothing) ? get_ps(flatrs) : union(get_ps(flatrs), toparam(noise_scaling));
name=name,
defaults=get_defaults(flatrs),
observed=get_observed(fullrs),
observed=get_observed(flatrs),
checks = checks,
kwargs...)
end
Expand All @@ -710,7 +710,7 @@ function Base.convert(::Type{<:JumpSystem},rs::ReactionSystem;

eqs = assemble_jumps(flatrs; combinatoric_ratelaws=combinatoric_ratelaws)
JumpSystem(eqs, get_iv(flatrs), get_states(flatrs), get_ps(flatrs); name=name,
defaults=get_defaults(flatrs), observed=get_observed(fullrs),
defaults=get_defaults(flatrs), observed=get_observed(flatrs),
checks = checks, kwargs...)
end

Expand Down

0 comments on commit f0c8c6f

Please sign in to comment.