Skip to content

Commit ed1b36d

Browse files
committed
format
1 parent b1ba19b commit ed1b36d

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/Catalyst.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ using ModelingToolkit: Symbolic, value, get_unknowns, get_ps, get_iv, get_system
3131
import ModelingToolkit: get_variables, namespace_expr, namespace_equation, get_variables!,
3232
modified_unknowns!, validate, namespace_variables,
3333
namespace_parameters, rename, renamespace, getname, flatten,
34-
is_alg_equation, is_diff_equation, collect_vars!,
34+
is_alg_equation, is_diff_equation, collect_vars!,
3535
eqtype_supports_collect_vars
3636

3737
# internal but needed ModelingToolkit functions

src/reaction.jl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ MT.is_alg_equation(rx::Reaction) = false
350350

351351
# MTK functions for extracting variables within equation type object
352352
MT.eqtype_supports_collect_vars(rx::Reaction) = true
353-
function MT.collect_vars!(unknowns, parameters, rx::Reaction, iv; depth = 0,
353+
function MT.collect_vars!(unknowns, parameters, rx::Reaction, iv; depth = 0,
354354
op = MT.Differential)
355355
MT.collect_vars!(unknowns, parameters, rx.rate, iv; depth, op)
356356
for sub in rx.substrates
@@ -368,7 +368,6 @@ function MT.collect_vars!(unknowns, parameters, rx::Reaction, iv; depth = 0,
368368
return nothing
369369
end
370370

371-
372371
"""
373372
get_symbolics(set, rx::Reaction)
374373

0 commit comments

Comments
 (0)