File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -600,10 +600,10 @@ function read_ivs_option(options)
600
600
if haskey (options, :ivs )
601
601
ivs = Tuple (extract_syms (options, :ivs ))
602
602
ivexpr = copy (options[:ivs ])
603
- ivexpr. args[1 ] = Symbol (" @" , " variables " )
603
+ ivexpr. args[1 ] = Symbol (" @" , " parameters " )
604
604
else
605
605
ivs = (DEFAULT_IV_SYM,)
606
- ivexpr = :(@variables $ (DEFAULT_IV_SYM))
606
+ ivexpr = :($ (DEFAULT_IV_SYM) = default_t ( ))
607
607
end
608
608
609
609
# Extracts the independet variables symbols, and returns the output.
@@ -919,7 +919,7 @@ function make_reaction(ex::Expr)
919
919
sexprs = get_usexpr (species, Dict {Symbol, Expr} ())
920
920
pexprs = get_pexpr (parameters, Dict {Symbol, Expr} ())
921
921
rxexpr = get_rxexpr (reaction)
922
- iv = :(@variables $ (DEFAULT_IV_SYM))
922
+ iv = :($ (DEFAULT_IV_SYM) = default_t ( ))
923
923
924
924
# Returns a repharsed expression which generates the `Reaction`.
925
925
quote
You can’t perform that action at this time.
0 commit comments