I am importing an SBML file without a problem but I got the following warnings:
Warning: Stoichiometries of SpeciesReferences are not defined. Setting to 1.
WARNING: both Symbolics and ModelingToolkit export “supremum”; uses of it in module Catalyst must be qualified
WARNING: both Symbolics and ModelingToolkit export “infimum”; uses of it in module Catalyst must be qualified
Do you know why this is happening?
Here is the code. The warnings happen on the last line:
using DifferentialEquations
using SBMLToolkit
using ModelingToolkit
SBMLToolkit.checksupport_file("toy_model_sbml.xml");
mdl = readSBML("toy_model_sbml.xml");
rn = ReactionSystem(mdl);