本文整理汇总了C#中libsbmlcs.Model.getListOfCompartments方法的典型用法代码示例。如果您正苦于以下问题:C# Model.getListOfCompartments方法的具体用法?C# Model.getListOfCompartments怎么用?C# Model.getListOfCompartments使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类libsbmlcs.Model
的用法示例。
在下文中一共展示了Model.getListOfCompartments方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: test_ListOf_append
public void test_ListOf_append()
{
Model m = new Model(2,4);
m.createCompartment();
ListOf loc = m.getListOfCompartments();
assertTrue( loc.size() == 1 );
SBase c = new Compartment(2,4);
int i = loc.append(c);
assertTrue( i == libsbml.LIBSBML_OPERATION_SUCCESS );
assertTrue( loc.size() == 2 );
SBase sp = new Species(2,4);
i = loc.append(sp);
assertTrue( i == libsbml.LIBSBML_INVALID_OBJECT );
assertTrue( loc.size() == 2 );
m = null;
sp = null;
}
示例2: test_Compartment_parent_add
public void test_Compartment_parent_add()
{
Compartment c = new Compartment(2,4);
c.setId("c");
Model m = new Model(2,4);
m.addCompartment(c);
c = null;
ListOf lo = m.getListOfCompartments();
assertTrue( lo == m.getCompartment(0).getParentSBMLObject() );
assertTrue( m == lo.getParentSBMLObject() );
}
示例3: test_Compartment_parent_create
public void test_Compartment_parent_create()
{
Model m = new Model(2,4);
Compartment c = m.createCompartment();
ListOf lo = m.getListOfCompartments();
assertTrue( lo == m.getCompartment(0).getParentSBMLObject() );
assertTrue( lo == c.getParentSBMLObject() );
assertTrue( m == lo.getParentSBMLObject() );
}
示例4: test_Compartment_ancestor_create
public void test_Compartment_ancestor_create()
{
Model m = new Model(2,4);
Compartment c = m.createCompartment();
ListOf lo = m.getListOfCompartments();
assertTrue( c.getAncestorOfType(libsbml.SBML_MODEL) == m );
assertTrue( c.getAncestorOfType(libsbml.SBML_LIST_OF) == lo );
assertTrue( c.getAncestorOfType(libsbml.SBML_DOCUMENT) == null );
assertTrue( c.getAncestorOfType(libsbml.SBML_EVENT) == null );
Compartment obj = m.getCompartment(0);
assertTrue( obj.getAncestorOfType(libsbml.SBML_MODEL) == m );
assertTrue( obj.getAncestorOfType(libsbml.SBML_LIST_OF) == lo );
assertTrue( obj.getAncestorOfType(libsbml.SBML_DOCUMENT) == null );
assertTrue( obj.getAncestorOfType(libsbml.SBML_EVENT) == null );
}
示例5: test_Compartment_ancestor_add
public void test_Compartment_ancestor_add()
{
Compartment c = new Compartment(2,4);
c.setId("C");
Model m = new Model(2,4);
m.addCompartment(c);
c = null;
ListOf lo = m.getListOfCompartments();
Compartment obj = m.getCompartment(0);
assertTrue( obj.getAncestorOfType(libsbml.SBML_MODEL) == m );
assertTrue( obj.getAncestorOfType(libsbml.SBML_LIST_OF) == lo );
assertTrue( obj.getAncestorOfType(libsbml.SBML_DOCUMENT) == null );
assertTrue( obj.getAncestorOfType(libsbml.SBML_EVENT) == null );
}
示例6: test_ReadSBML_notes_ListOf
public void test_ReadSBML_notes_ListOf()
{
SBase sb;
string s = wrapSBML_L2v1("<listOfFunctionDefinitions>" +
" <notes>My Functions</notes>" +
" <functionDefinition/>" +
"</listOfFunctionDefinitions>" +
"<listOfUnitDefinitions>" +
" <notes>My Units</notes>" +
" <unitDefinition/>" +
"</listOfUnitDefinitions>" +
"<listOfCompartments>" +
" <notes>My Compartments</notes>" +
" <compartment/>" +
"</listOfCompartments>");
D = libsbml.readSBMLFromString(s);
M = D.getModel();
assertTrue( M != null );
sb = M.getListOfFunctionDefinitions();
assertEquals( true, sb.isSetNotes() );
string notes = sb.getNotes().getChild(0).getCharacters();
assertTrue( ( "My Functions" != notes ) == false );
sb = M.getListOfUnitDefinitions();
assertEquals( true, sb.isSetNotes() );
notes = sb.getNotes().getChild(0).getCharacters();
assertTrue( ( "My Units" != notes ) == false );
sb = M.getListOfCompartments();
assertEquals( true, sb.isSetNotes() );
notes = sb.getNotes().getChild(0).getCharacters();
assertTrue( ( "My Compartments" != notes ) == false );
}
示例7: test_ReadSBML_metaid_ListOf
public void test_ReadSBML_metaid_ListOf()
{
SBase sb;
string s = wrapSBML_L2v1("<listOfFunctionDefinitions metaid='lofd'/>" +
"<listOfUnitDefinitions metaid='loud'/>" +
"<listOfCompartments metaid='loc'/>" +
"<listOfSpecies metaid='los'/>" +
"<listOfParameters metaid='lop'/>" +
"<listOfRules metaid='lor'/>" +
"<listOfReactions metaid='lorx'/>" +
"<listOfEvents metaid='loe'/>");
D = libsbml.readSBMLFromString(s);
M = D.getModel();
assertTrue( M != null );
sb = M.getListOfFunctionDefinitions();
assertEquals( true, sb.isSetMetaId() );
assertTrue(( "lofd" == sb.getMetaId() ));
sb = M.getListOfUnitDefinitions();
assertEquals( true, sb.isSetMetaId() );
assertTrue(( "loud" == sb.getMetaId() ));
sb = M.getListOfCompartments();
assertEquals( true, sb.isSetMetaId() );
assertTrue(( "loc" == sb.getMetaId() ));
sb = M.getListOfSpecies();
assertEquals( true, sb.isSetMetaId() );
assertTrue(( "los" == sb.getMetaId() ));
sb = M.getListOfParameters();
assertEquals( true, sb.isSetMetaId() );
assertTrue(( "lop" == sb.getMetaId() ));
sb = M.getListOfRules();
assertEquals( true, sb.isSetMetaId() );
assertTrue(( "lor" == sb.getMetaId() ));
sb = M.getListOfReactions();
assertEquals( true, sb.isSetMetaId() );
assertTrue(( "lorx" == sb.getMetaId() ));
sb = M.getListOfEvents();
assertEquals( true, sb.isSetMetaId() );
assertTrue(( "loe" == sb.getMetaId() ));
}