当前位置: 首页>>代码示例>>C#>>正文


C# ASTNode.getType方法代码示例

本文整理汇总了C#中libsbmlcs.ASTNode.getType方法的典型用法代码示例。如果您正苦于以下问题:C# ASTNode.getType方法的具体用法?C# ASTNode.getType怎么用?C# ASTNode.getType使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在libsbmlcs.ASTNode的用法示例。


在下文中一共展示了ASTNode.getType方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: test_ASTNode_canonicalizeConstants

 public void test_ASTNode_canonicalizeConstants()
 {
     ASTNode n = new  ASTNode();
       n.setName( "ExponentialE");
       assertEquals( true, n.isName() );
       n.canonicalize();
       assertTrue( n.getType() == libsbml.AST_CONSTANT_E );
       n.setType(libsbml.AST_NAME);
       n.setName( "False");
       assertEquals( true, n.isName() );
       n.canonicalize();
       assertTrue( n.getType() == libsbml.AST_CONSTANT_FALSE );
       n.setType(libsbml.AST_NAME);
       n.setName( "Pi");
       assertEquals( true, n.isName() );
       n.canonicalize();
       assertTrue( n.getType() == libsbml.AST_CONSTANT_PI );
       n.setType(libsbml.AST_NAME);
       n.setName( "True");
       assertEquals( true, n.isName() );
       n.canonicalize();
       assertTrue( n.getType() == libsbml.AST_CONSTANT_TRUE );
       n.setType(libsbml.AST_NAME);
       n.setName( "Foo");
       assertEquals( true, n.isName() );
       n.canonicalize();
       assertEquals( true, n.isName() );
       n = null;
 }
开发者ID:TotteKarlsson,项目名称:roadrunner,代码行数:29,代码来源:TestASTNode.cs

示例2: test_element_csymbol_delay_1

 public void test_element_csymbol_delay_1()
 {
     string s = wrapMathML("<csymbol encoding='text' " + "definitionURL='http://www.sbml.org/sbml/symbols/delay'> delay </csymbol>");
       N = libsbml.readMathMLFromString(s);
       assertTrue( N != null );
       assertTrue( N.getType() == libsbml.AST_FUNCTION_DELAY );
       assertTrue((  "delay" == N.getName() ));
       assertTrue( N.getNumChildren() == 0 );
 }
开发者ID:TotteKarlsson,项目名称:roadrunner,代码行数:9,代码来源:TestReadMathML.cs

示例3: test_element_math

 public void test_element_math()
 {
     string s = wrapXML("<math xmlns='http://www.w3.org/1998/Math/MathML'/>"
     );
       N = libsbml.readMathMLFromString(s);
       assertTrue( N != null );
       assertTrue( N.getType() == libsbml.AST_UNKNOWN );
 }
开发者ID:TotteKarlsson,项目名称:roadrunner,代码行数:8,代码来源:TestReadMathML.cs

示例4: test_element_cn_units

 public void test_element_cn_units()
 {
     string s = wrapMathMLUnits("<cn sbml:units=\"mole\"> 12345.7 </cn>");
       N = libsbml.readMathMLFromString(s);
       assertTrue( N != null );
       assertTrue( N.getType() == libsbml.AST_REAL );
       assertTrue( N.getReal() == 12345.7 );
       assertTrue( N.getUnits() ==  "mole"    );
       assertTrue( N.getNumChildren() == 0 );
 }
开发者ID:TotteKarlsson,项目名称:roadrunner,代码行数:10,代码来源:TestReadMathML.cs

示例5: test_element_constants_notanumber

 public void test_element_constants_notanumber()
 {
     string s = wrapMathML("<notanumber/>");
       N = libsbml.readMathMLFromString(s);
       assertTrue( N != null );
       assertTrue( N.getType() == libsbml.AST_REAL );
       assertEquals( true, isnan(N.getReal()) );
       assertTrue( N.getNumChildren() == 0 );
 }
开发者ID:TotteKarlsson,项目名称:roadrunner,代码行数:9,代码来源:TestReadMathML.cs

示例6: test_element_cn_e_notation

 public void test_element_cn_e_notation()
 {
     string s = wrapMathML("<cn type='e-notation'> 12.3 <sep/> 5 </cn>");
       N = libsbml.readMathMLFromString(s);
       assertTrue( N != null );
       assertTrue( N.getType() == libsbml.AST_REAL_E );
       assertTrue( N.getMantissa() == 12.3 );
       assertTrue( N.getExponent() == 5 );
       assertTrue( N.getNumChildren() == 0 );
 }
开发者ID:TotteKarlsson,项目名称:roadrunner,代码行数:10,代码来源:TestReadMathML.cs

示例7: test_element_cn_rational

 public void test_element_cn_rational()
 {
     string s = wrapMathML("<cn type='rational'> 12342 <sep/> 2342342 </cn>"
     );
       N = libsbml.readMathMLFromString(s);
       assertTrue( N != null );
       assertTrue( N.getType() == libsbml.AST_RATIONAL );
       assertTrue( N.getNumerator() == 12342 );
       assertTrue( N.getDenominator() == 2342342 );
       assertTrue( N.getNumChildren() == 0 );
 }
开发者ID:TotteKarlsson,项目名称:roadrunner,代码行数:11,代码来源:TestReadMathML.cs

示例8: test_ASTNode_create

 public void test_ASTNode_create()
 {
     ASTNode n = new  ASTNode();
       EventAssignment ea = new  EventAssignment(2,4);
       assertTrue( n.getType() == libsbml.AST_UNKNOWN );
       assertTrue( n.getCharacter() == '\0' );
       assertTrue( n.getName() == null );
       assertTrue( n.getInteger() == 0 );
       assertTrue( n.getExponent() == 0 );
       assertTrue( n.getNumChildren() == 0 );
       assertTrue( n.getParentSBMLObject() == null );
       ea = null;
       n = null;
 }
开发者ID:TotteKarlsson,项目名称:roadrunner,代码行数:14,代码来源:TestASTNode.cs

示例9: test_ASTNode_deepCopy_1

 public void test_ASTNode_deepCopy_1()
 {
     ASTNode node = new  ASTNode();
       ASTNode child, copy;
       node.setCharacter( '+');
       node.addChild(new  ASTNode());
       node.addChild(new  ASTNode());
       node.getLeftChild().setValue(1);
       node.getRightChild().setValue(2);
       assertTrue( node.getType() == libsbml.AST_PLUS );
       assertTrue( node.getCharacter() == '+' );
       assertTrue( node.getNumChildren() == 2 );
       child = node.getLeftChild();
       assertTrue( child.getType() == libsbml.AST_INTEGER );
       assertTrue( child.getInteger() == 1 );
       assertTrue( child.getNumChildren() == 0 );
       child = node.getRightChild();
       assertTrue( child.getType() == libsbml.AST_INTEGER );
       assertTrue( child.getInteger() == 2 );
       assertTrue( child.getNumChildren() == 0 );
       copy = node.deepCopy();
       assertTrue( copy != node );
       assertTrue( copy.getType() == libsbml.AST_PLUS );
       assertTrue( copy.getCharacter() == '+' );
       assertTrue( copy.getNumChildren() == 2 );
       child = copy.getLeftChild();
       assertTrue( child != node.getLeftChild() );
       assertTrue( child.getType() == libsbml.AST_INTEGER );
       assertTrue( child.getInteger() == 1 );
       assertTrue( child.getNumChildren() == 0 );
       child = copy.getRightChild();
       assertTrue( child != node.getRightChild() );
       assertTrue( child.getType() == libsbml.AST_INTEGER );
       assertTrue( child.getInteger() == 2 );
       assertTrue( child.getNumChildren() == 0 );
       node = null;
       copy = null;
 }
开发者ID:TotteKarlsson,项目名称:roadrunner,代码行数:38,代码来源:TestASTNode.cs

示例10: test_ASTNode_canonicalizeLogical

 public void test_ASTNode_canonicalizeLogical()
 {
     ASTNode n = new  ASTNode(libsbml.AST_FUNCTION);
       n.setName( "and");
       assertTrue( n.getType() == libsbml.AST_FUNCTION );
       n.canonicalize();
       assertTrue( n.getType() == libsbml.AST_LOGICAL_AND );
       n.setType(libsbml.AST_FUNCTION);
       n.setName( "not");
       assertTrue( n.getType() == libsbml.AST_FUNCTION );
       n.canonicalize();
       assertTrue( n.getType() == libsbml.AST_LOGICAL_NOT );
       n.setType(libsbml.AST_FUNCTION);
       n.setName( "or");
       assertTrue( n.getType() == libsbml.AST_FUNCTION );
       n.canonicalize();
       assertTrue( n.getType() == libsbml.AST_LOGICAL_OR );
       n.setType(libsbml.AST_FUNCTION);
       n.setName( "xor");
       assertTrue( n.getType() == libsbml.AST_FUNCTION );
       n.canonicalize();
       assertTrue( n.getType() == libsbml.AST_LOGICAL_XOR );
       n.setType(libsbml.AST_FUNCTION);
       n = null;
 }
开发者ID:TotteKarlsson,项目名称:roadrunner,代码行数:25,代码来源:TestASTNode.cs

示例11: test_ASTNode_canonicalizeRelational

 public void test_ASTNode_canonicalizeRelational()
 {
     ASTNode n = new  ASTNode(libsbml.AST_FUNCTION);
       n.setName( "eq");
       assertTrue( n.getType() == libsbml.AST_FUNCTION );
       n.canonicalize();
       assertTrue( n.getType() == libsbml.AST_RELATIONAL_EQ );
       n.setType(libsbml.AST_FUNCTION);
       n.setName( "geq");
       assertTrue( n.getType() == libsbml.AST_FUNCTION );
       n.canonicalize();
       assertTrue( n.getType() == libsbml.AST_RELATIONAL_GEQ );
       n.setType(libsbml.AST_FUNCTION);
       n.setName( "gt");
       assertTrue( n.getType() == libsbml.AST_FUNCTION );
       n.canonicalize();
       assertTrue( n.getType() == libsbml.AST_RELATIONAL_GT );
       n.setType(libsbml.AST_FUNCTION);
       n.setName( "leq");
       assertTrue( n.getType() == libsbml.AST_FUNCTION );
       n.canonicalize();
       assertTrue( n.getType() == libsbml.AST_RELATIONAL_LEQ );
       n.setType(libsbml.AST_FUNCTION);
       n.setName( "lt");
       assertTrue( n.getType() == libsbml.AST_FUNCTION );
       n.canonicalize();
       assertTrue( n.getType() == libsbml.AST_RELATIONAL_LT );
       n.setType(libsbml.AST_FUNCTION);
       n.setName( "neq");
       assertTrue( n.getType() == libsbml.AST_FUNCTION );
       n.canonicalize();
       assertTrue( n.getType() == libsbml.AST_RELATIONAL_NEQ );
       n.setType(libsbml.AST_FUNCTION);
       n = null;
 }
开发者ID:TotteKarlsson,项目名称:roadrunner,代码行数:35,代码来源:TestASTNode.cs

示例12: test_ASTNode_canonicalizeFunctionsL1

 public void test_ASTNode_canonicalizeFunctionsL1()
 {
     ASTNode n = new  ASTNode(libsbml.AST_FUNCTION);
       ASTNode c;
       n.setName( "acos");
       assertTrue( n.getType() == libsbml.AST_FUNCTION );
       n.canonicalize();
       assertTrue( n.getType() == libsbml.AST_FUNCTION_ARCCOS );
       n.setType(libsbml.AST_FUNCTION);
       n.setName( "asin");
       assertTrue( n.getType() == libsbml.AST_FUNCTION );
       n.canonicalize();
       assertTrue( n.getType() == libsbml.AST_FUNCTION_ARCSIN );
       n.setType(libsbml.AST_FUNCTION);
       n.setName( "atan");
       assertTrue( n.getType() == libsbml.AST_FUNCTION );
       n.canonicalize();
       assertTrue( n.getType() == libsbml.AST_FUNCTION_ARCTAN );
       n.setType(libsbml.AST_FUNCTION);
       n.setName( "ceil");
       assertTrue( n.getType() == libsbml.AST_FUNCTION );
       n.canonicalize();
       assertTrue( n.getType() == libsbml.AST_FUNCTION_CEILING );
       n.setType(libsbml.AST_FUNCTION);
       n.setName( "pow");
       assertTrue( n.getType() == libsbml.AST_FUNCTION );
       n.canonicalize();
       assertTrue( n.getType() == libsbml.AST_FUNCTION_POWER );
       n = null;
       n = new  ASTNode(libsbml.AST_FUNCTION);
       n.setName( "log");
       c = new  ASTNode();
       c.setName( "x");
       n.addChild(c);
       assertTrue( n.getType() == libsbml.AST_FUNCTION );
       assertTrue( n.getNumChildren() == 1 );
       n.canonicalize();
       assertTrue( n.getType() == libsbml.AST_FUNCTION_LN );
       assertTrue( n.getNumChildren() == 1 );
       n.setType(libsbml.AST_FUNCTION);
       c = new  ASTNode();
       c.setName( "y");
       n.addChild(c);
       assertTrue( n.getType() == libsbml.AST_FUNCTION );
       assertTrue( n.getNumChildren() == 2 );
       n.canonicalize();
       assertTrue( n.getType() == libsbml.AST_FUNCTION_LOG );
       n = null;
       n = new  ASTNode(libsbml.AST_FUNCTION);
       n.setName( "log10");
       c = new  ASTNode();
       c.setName( "x");
       n.addChild(c);
       assertTrue( n.getType() == libsbml.AST_FUNCTION );
       assertTrue( n.getNumChildren() == 1 );
       n.canonicalize();
       assertTrue( n.getType() == libsbml.AST_FUNCTION_LOG );
       assertTrue( n.getNumChildren() == 2 );
       c = n.getLeftChild();
       assertTrue( c.getType() == libsbml.AST_INTEGER );
       assertTrue( c.getInteger() == 10 );
       c = n.getRightChild();
       assertTrue( c.getType() == libsbml.AST_NAME );
       assertTrue((  "x" == c.getName() ));
       n = null;
       n = new  ASTNode(libsbml.AST_FUNCTION);
       n.setName( "sqr");
       c = new  ASTNode();
       c.setName( "x");
       n.addChild(c);
       assertTrue( n.getType() == libsbml.AST_FUNCTION );
       assertTrue( n.getNumChildren() == 1 );
       n.canonicalize();
       assertTrue( n.getType() == libsbml.AST_FUNCTION_POWER );
       assertTrue( n.getNumChildren() == 2 );
       c = n.getLeftChild();
       assertTrue( c.getType() == libsbml.AST_NAME );
       assertTrue((  "x" == c.getName() ));
       c = n.getRightChild();
       assertTrue( c.getType() == libsbml.AST_INTEGER );
       assertTrue( c.getInteger() == 2 );
       n = null;
       n = new  ASTNode(libsbml.AST_FUNCTION);
       n.setName( "sqrt");
       c = new  ASTNode();
       c.setName( "x");
       n.addChild(c);
       assertTrue( n.getType() == libsbml.AST_FUNCTION );
       assertTrue( n.getNumChildren() == 1 );
       n.canonicalize();
       assertTrue( n.getType() == libsbml.AST_FUNCTION_ROOT );
       assertTrue( n.getNumChildren() == 2 );
       c = n.getLeftChild();
       assertTrue( c.getType() == libsbml.AST_INTEGER );
       assertTrue( c.getInteger() == 2 );
       c = n.getRightChild();
       assertTrue( c.getType() == libsbml.AST_NAME );
       assertTrue((  "x" == c.getName() ));
       n = null;
 }
开发者ID:TotteKarlsson,项目名称:roadrunner,代码行数:100,代码来源:TestASTNode.cs

示例13: test_ASTNode_canonicalizeFunctions

 public void test_ASTNode_canonicalizeFunctions()
 {
     ASTNode n = new  ASTNode(libsbml.AST_FUNCTION);
       n.setName( "abs");
       assertTrue( n.getType() == libsbml.AST_FUNCTION );
       n.canonicalize();
       assertTrue( n.getType() == libsbml.AST_FUNCTION_ABS );
       n.setType(libsbml.AST_FUNCTION);
       n.setName( "arccos");
       assertTrue( n.getType() == libsbml.AST_FUNCTION );
       n.canonicalize();
       assertTrue( n.getType() == libsbml.AST_FUNCTION_ARCCOS );
       n.setType(libsbml.AST_FUNCTION);
       n.setName( "arccosh");
       assertTrue( n.getType() == libsbml.AST_FUNCTION );
       n.canonicalize();
       assertTrue( n.getType() == libsbml.AST_FUNCTION_ARCCOSH );
       n.setType(libsbml.AST_FUNCTION);
       n.setName( "arccot");
       assertTrue( n.getType() == libsbml.AST_FUNCTION );
       n.canonicalize();
       assertTrue( n.getType() == libsbml.AST_FUNCTION_ARCCOT );
       n.setType(libsbml.AST_FUNCTION);
       n.setName( "arccoth");
       assertTrue( n.getType() == libsbml.AST_FUNCTION );
       n.canonicalize();
       assertTrue( n.getType() == libsbml.AST_FUNCTION_ARCCOTH );
       n.setType(libsbml.AST_FUNCTION);
       n.setName( "arccsc");
       assertTrue( n.getType() == libsbml.AST_FUNCTION );
       n.canonicalize();
       assertTrue( n.getType() == libsbml.AST_FUNCTION_ARCCSC );
       n.setType(libsbml.AST_FUNCTION);
       n.setName( "arccsch");
       assertTrue( n.getType() == libsbml.AST_FUNCTION );
       n.canonicalize();
       assertTrue( n.getType() == libsbml.AST_FUNCTION_ARCCSCH );
       n.setType(libsbml.AST_FUNCTION);
       n.setName( "arcsec");
       assertTrue( n.getType() == libsbml.AST_FUNCTION );
       n.canonicalize();
       assertTrue( n.getType() == libsbml.AST_FUNCTION_ARCSEC );
       n.setType(libsbml.AST_FUNCTION);
       n.setName( "arcsech");
       assertTrue( n.getType() == libsbml.AST_FUNCTION );
       n.canonicalize();
       assertTrue( n.getType() == libsbml.AST_FUNCTION_ARCSECH );
       n.setType(libsbml.AST_FUNCTION);
       n.setName( "arcsin");
       assertTrue( n.getType() == libsbml.AST_FUNCTION );
       n.canonicalize();
       assertTrue( n.getType() == libsbml.AST_FUNCTION_ARCSIN );
       n.setType(libsbml.AST_FUNCTION);
       n.setName( "arcsinh");
       assertTrue( n.getType() == libsbml.AST_FUNCTION );
       n.canonicalize();
       assertTrue( n.getType() == libsbml.AST_FUNCTION_ARCSINH );
       n.setType(libsbml.AST_FUNCTION);
       n.setName( "arctan");
       assertTrue( n.getType() == libsbml.AST_FUNCTION );
       n.canonicalize();
       assertTrue( n.getType() == libsbml.AST_FUNCTION_ARCTAN );
       n.setType(libsbml.AST_FUNCTION);
       n.setName( "arctanh");
       assertTrue( n.getType() == libsbml.AST_FUNCTION );
       n.canonicalize();
       assertTrue( n.getType() == libsbml.AST_FUNCTION_ARCTANH );
       n.setType(libsbml.AST_FUNCTION);
       n.setName( "ceiling");
       assertTrue( n.getType() == libsbml.AST_FUNCTION );
       n.canonicalize();
       assertTrue( n.getType() == libsbml.AST_FUNCTION_CEILING );
       n.setType(libsbml.AST_FUNCTION);
       n.setName( "cos");
       assertTrue( n.getType() == libsbml.AST_FUNCTION );
       n.canonicalize();
       assertTrue( n.getType() == libsbml.AST_FUNCTION_COS );
       n.setType(libsbml.AST_FUNCTION);
       n.setName( "cosh");
       assertTrue( n.getType() == libsbml.AST_FUNCTION );
       n.canonicalize();
       assertTrue( n.getType() == libsbml.AST_FUNCTION_COSH );
       n.setType(libsbml.AST_FUNCTION);
       n.setName( "cot");
       assertTrue( n.getType() == libsbml.AST_FUNCTION );
       n.canonicalize();
       assertTrue( n.getType() == libsbml.AST_FUNCTION_COT );
       n.setType(libsbml.AST_FUNCTION);
       n.setName( "coth");
       assertTrue( n.getType() == libsbml.AST_FUNCTION );
       n.canonicalize();
       assertTrue( n.getType() == libsbml.AST_FUNCTION_COTH );
       n.setType(libsbml.AST_FUNCTION);
       n.setName( "csc");
       assertTrue( n.getType() == libsbml.AST_FUNCTION );
       n.canonicalize();
       assertTrue( n.getType() == libsbml.AST_FUNCTION_CSC );
       n.setType(libsbml.AST_FUNCTION);
       n.setName( "csch");
       assertTrue( n.getType() == libsbml.AST_FUNCTION );
//.........这里部分代码省略.........
开发者ID:TotteKarlsson,项目名称:roadrunner,代码行数:101,代码来源:TestASTNode.cs

示例14: test_ASTNode_setType

 public void test_ASTNode_setType()
 {
     ASTNode node = new  ASTNode();
       node.setName( "foo");
       assertTrue( node.getType() == libsbml.AST_NAME );
       node.setType(libsbml.AST_FUNCTION);
       assertTrue( node.getType() == libsbml.AST_FUNCTION );
       assertTrue((  "foo" == node.getName() ));
       node.setType(libsbml.AST_NAME);
       assertTrue( node.getType() == libsbml.AST_NAME );
       assertTrue((  "foo" == node.getName() ));
       node.setType(libsbml.AST_INTEGER);
       assertTrue( node.getType() == libsbml.AST_INTEGER );
       node.setType(libsbml.AST_REAL);
       assertTrue( node.getType() == libsbml.AST_REAL );
       node.setType(libsbml.AST_UNKNOWN);
       assertTrue( node.getType() == libsbml.AST_UNKNOWN );
       node.setType(libsbml.AST_PLUS);
       assertTrue( node.getType() == libsbml.AST_PLUS );
       assertTrue( node.getCharacter() == '+' );
       node.setType(libsbml.AST_MINUS);
       assertTrue( node.getType() == libsbml.AST_MINUS );
       assertTrue( node.getCharacter() == '-' );
       node.setType(libsbml.AST_TIMES);
       assertTrue( node.getType() == libsbml.AST_TIMES );
       assertTrue( node.getCharacter() == '*' );
       node.setType(libsbml.AST_DIVIDE);
       assertTrue( node.getType() == libsbml.AST_DIVIDE );
       assertTrue( node.getCharacter() == '/' );
       node.setType(libsbml.AST_POWER);
       assertTrue( node.getType() == libsbml.AST_POWER );
       assertTrue( node.getCharacter() == '^' );
       node = null;
 }
开发者ID:TotteKarlsson,项目名称:roadrunner,代码行数:34,代码来源:TestASTNode.cs

示例15: test_element_ci_definitionURL

 public void test_element_ci_definitionURL()
 {
     string s = wrapMathML("<ci definitionURL=\"foobar\"> x </ci>");
       N = libsbml.readMathMLFromString(s);
       assertTrue( N != null );
       assertTrue( N.getType() == libsbml.AST_NAME );
       assertTrue((  "x" == N.getName() ));
       assertTrue( N.getNumChildren() == 0 );
       assertTrue( N.getDefinitionURL().getValue(0) ==  "foobar" );
 }
开发者ID:TotteKarlsson,项目名称:roadrunner,代码行数:10,代码来源:TestReadMathML.cs


注:本文中的libsbmlcs.ASTNode.getType方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。