本文整理汇总了C#中libsbml.Model.getVersion方法的典型用法代码示例。如果您正苦于以下问题:C# Model.getVersion方法的具体用法?C# Model.getVersion怎么用?C# Model.getVersion使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类libsbml.Model
的用法示例。
在下文中一共展示了Model.getVersion方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: test_Model_createWithNS
public void test_Model_createWithNS()
{
XMLNamespaces xmlns = new XMLNamespaces();
xmlns.add( "http://www.sbml.org", "testsbml");
SBMLNamespaces sbmlns = new SBMLNamespaces(2,1);
sbmlns.addNamespaces(xmlns);
Model object1 = new Model(sbmlns);
assertTrue( object1.getTypeCode() == libsbml.SBML_MODEL );
assertTrue( object1.getMetaId() == "" );
assertTrue( object1.getNotes() == null );
assertTrue( object1.getAnnotation() == null );
assertTrue( object1.getLevel() == 2 );
assertTrue( object1.getVersion() == 1 );
assertTrue( object1.getNamespaces() != null );
assertTrue( object1.getNamespaces().getLength() == 2 );
object1 = null;
}
示例2: SBML_Model
/// <summary>
///
/// </summary>
/// <param name="aSBMLmodel"></param>
public SBML_Model(Model aSBMLmodel)
{
this.CompartmentSize = new Dictionary<string,double>();
this.CompartmentUnit = new Dictionary<string,string>();
this.FunctionDefinition = new Dictionary<string, string>();
this.Level = aSBMLmodel.getLevel();
this.Version = aSBMLmodel.getVersion();
this.CompartmentList = SbmlFunctions.getCompartment(aSBMLmodel);
this.EventList = SbmlFunctions.getEvent(aSBMLmodel);
this.FunctionDefinitionList = SbmlFunctions.getFunctionDefinition(aSBMLmodel);
this.ParameterList = SbmlFunctions.getParameter(aSBMLmodel);
this.ReactionList = SbmlFunctions.getReaction(aSBMLmodel);
this.RuleList = SbmlFunctions.getRule(aSBMLmodel);
this.SpeciesList = SbmlFunctions.getSpecies(aSBMLmodel);
this.UnitDefinitionList = SbmlFunctions.getUnitDefinition(aSBMLmodel);
this.InitialAssignmentList = SbmlFunctions.getInitialAssignments(aSBMLmodel);
this.setFunctionDefinitionToDictionary();
}
示例3: test_L3_Model_createWithNS
public void test_L3_Model_createWithNS()
{
XMLNamespaces xmlns = new XMLNamespaces();
xmlns.add( "http://www.sbml.org", "testsbml");
SBMLNamespaces sbmlns = new SBMLNamespaces(3,1);
sbmlns.addNamespaces(xmlns);
Model m = new Model(sbmlns);
assertTrue( m.getTypeCode() == libsbml.SBML_MODEL );
assertTrue( m.getMetaId() == "" );
assertTrue( m.getNotes() == null );
assertTrue( m.getAnnotation() == null );
assertTrue( m.getLevel() == 3 );
assertTrue( m.getVersion() == 1 );
assertTrue( m.getNamespaces() != null );
assertTrue( m.getNamespaces().getLength() == 2 );
assertTrue( m.getId() == "" );
assertTrue( m.getName() == "" );
assertTrue( m.getSubstanceUnits() == "" );
assertTrue( m.getTimeUnits() == "" );
assertTrue( m.getVolumeUnits() == "" );
assertTrue( m.getAreaUnits() == "" );
assertTrue( m.getLengthUnits() == "" );
assertTrue( m.getConversionFactor() == "" );
assertEquals( false, m.isSetId() );
assertEquals( false, m.isSetName() );
assertEquals( false, m.isSetSubstanceUnits() );
assertEquals( false, m.isSetTimeUnits() );
assertEquals( false, m.isSetVolumeUnits() );
assertEquals( false, m.isSetAreaUnits() );
assertEquals( false, m.isSetLengthUnits() );
assertEquals( false, m.isSetConversionFactor() );
m = null;
}