We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 031f60e commit e172c47Copy full SHA for e172c47
src/reaction_network.jl
@@ -833,20 +833,6 @@ function recursive_expand_functions!(expr::ExprValues)
833
expr
834
end
835
836
-### Option Handling ###
837
-
838
-# Extracts any potential nosie scaling parameters and add them to teh decalred parameters.
839
-function add_noise_scaling_ps!(parameters_declared, options)
840
- haskey(options, :noise_scaling_parameters) || return
841
- for arg in options[:noise_scaling_parameters].args[end:-1:3]
842
- if arg isa Symbol
843
- push!(parameters_declared, arg)
844
- elseif arg isa Expr
845
- push!(parameters_declared, arg.args[1])
846
- end
847
848
-end
849
850
851
# ### Old functions (for deleting).
852
0 commit comments