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 4772d96 commit a9371d5Copy full SHA for a9371d5
ext/CatalystStructuralIdentifiabilityExtension/structural_identifiability_extension.jl
@@ -157,8 +157,8 @@ end
157
function make_osys(rs::ReactionSystem; remove_conserved=true)
158
# Creates the ODESystem corresponding to the ReactionSystem (expanding functions and flattening it).
159
# Creates a list of the systems all symbols (unknowns and parameters).
160
- rs = Catalyst.expand_registered_functions(flatten(rs))
161
- osys = convert(ODESystem, rs; remove_conserved)
+ rs = complete(Catalyst.expand_registered_functions(flatten(rs)))
+ osys = complete(convert(ODESystem, rs; remove_conserved))
162
vars = [unknowns(rs); parameters(rs)]
163
164
# Computes equations for system conservation laws.
0 commit comments