libsbmlcs.Model.getNumReactions C# (CSharp) Method

getNumReactions() public method

public getNumReactions ( ) : long
return long
        public long getNumReactions()
        {
            return (long)libsbmlPINVOKE.Model_getNumReactions(swigCPtr);
        }

Usage Example

Esempio n. 1
0
 /// <summary>
 ///     Imports all Reactions of the SBML Model.
 /// </summary>
 protected override void Import(Model model)
 {
     for (long i = 0; i < model.getNumReactions(); i++)
     {
         CreateReaction(model.getReaction(i), model);
     }
     AddToProject();
 }
All Usage Examples Of libsbmlcs.Model::getNumReactions
Model