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


C# ASTNode.setType方法代码示例

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


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

示例1: test_ASTNode_addChild1

 public void test_ASTNode_addChild1()
 {
     ASTNode node = new  ASTNode();
       ASTNode c1 = new  ASTNode();
       ASTNode c2 = new  ASTNode();
       ASTNode c1_1 = new  ASTNode();
       int i = 0;
       node.setType(libsbml.AST_LOGICAL_AND);
       c1.setName( "a");
       c2.setName( "b");
       node.addChild(c1);
       node.addChild(c2);
       assertTrue( node.getNumChildren() == 2 );
       assertTrue((  "and(a, b)" == libsbml.formulaToString(node) ));
       c1_1.setName( "d");
       i = node.addChild(c1_1);
       assertTrue( i == libsbml.LIBSBML_OPERATION_SUCCESS );
       assertTrue( node.getNumChildren() == 3 );
       assertTrue((  "and(a, b, d)" == libsbml.formulaToString(node) ));
       assertTrue((  "a" == node.getChild(0).getName() ));
       assertTrue((  "b" == node.getChild(1).getName() ));
       assertTrue((  "d" == node.getChild(2).getName() ));
       node = null;
 }
开发者ID:TotteKarlsson,项目名称:roadrunner,代码行数:24,代码来源:TestASTNode.cs

示例2: test_ASTNode_isSqrt

 public void test_ASTNode_isSqrt()
 {
     ASTNode n = new  ASTNode();
       ASTNode c;
       n.setType(libsbml.AST_FUNCTION);
       assertTrue( n.isSqrt() == false );
       n.setType(libsbml.AST_FUNCTION_ROOT);
       assertTrue( n.isSqrt() == false );
       c = new  ASTNode();
       n.addChild(c);
       c.setValue(2);
       assertTrue( n.isSqrt() == false );
       n.addChild(new  ASTNode());
       assertTrue( n.isSqrt() == true );
       c.setValue(3);
       assertTrue( n.isSqrt() == false );
       n = null;
 }
开发者ID:TotteKarlsson,项目名称:roadrunner,代码行数:18,代码来源:TestASTNode.cs

示例3: test_ASTNode_getReal

 public void test_ASTNode_getReal()
 {
     double val;
       ASTNode n = new  ASTNode();
       n.setType(libsbml.AST_REAL);
       n.setValue(1.6);
       assertTrue( n.getReal() == 1.6 );
       n.setType(libsbml.AST_REAL_E);
       n.setValue(12.3,3);
       val = Math.Abs(n.getReal() - 12300.0);
       assertTrue( val < DBL_EPSILON );
       n.setType(libsbml.AST_RATIONAL);
       n.setValue(1,2);
       assertTrue( n.getReal() == 0.5 );
       n = null;
 }
开发者ID:TotteKarlsson,项目名称:roadrunner,代码行数:16,代码来源:TestASTNode.cs

示例4: test_ASTNode_getPrecedence

 public void test_ASTNode_getPrecedence()
 {
     ASTNode n = new  ASTNode();
       n.setType(libsbml.AST_PLUS);
       assertTrue( n.getPrecedence() == 2 );
       n.setType(libsbml.AST_MINUS);
       assertTrue( n.getPrecedence() == 2 );
       n.setType(libsbml.AST_TIMES);
       assertTrue( n.getPrecedence() == 3 );
       n.setType(libsbml.AST_DIVIDE);
       assertTrue( n.getPrecedence() == 3 );
       n.setType(libsbml.AST_POWER);
       assertTrue( n.getPrecedence() == 4 );
       n.setType(libsbml.AST_MINUS);
       n.addChild(new  ASTNode(libsbml.AST_NAME));
       assertTrue( n.isUMinus() == true );
       assertTrue( n.getPrecedence() == 5 );
       n.setType(libsbml.AST_NAME);
       assertTrue( n.getPrecedence() == 6 );
       n.setType(libsbml.AST_FUNCTION);
       assertTrue( n.getPrecedence() == 6 );
       n = null;
 }
开发者ID:TotteKarlsson,项目名称:roadrunner,代码行数:23,代码来源:TestASTNode.cs

示例5: test_ASTNode_getName

 public void test_ASTNode_getName()
 {
     ASTNode n = new  ASTNode();
       n.setName( "foo");
       assertTrue((  "foo" == n.getName() ));
       n.setType(libsbml.AST_NAME_TIME);
       assertTrue((  "foo" == n.getName() ));
       n.setName(null);
       assertTrue( n.getName() == null );
       n.setType(libsbml.AST_CONSTANT_E);
       assertTrue((  "exponentiale" == n.getName() ));
       n.setType(libsbml.AST_CONSTANT_FALSE);
       assertTrue((  "false" == n.getName() ));
       n.setType(libsbml.AST_CONSTANT_PI);
       assertTrue((  "pi" == n.getName() ));
       n.setType(libsbml.AST_CONSTANT_TRUE);
       assertTrue((  "true" == n.getName() ));
       n.setType(libsbml.AST_LAMBDA);
       assertTrue((  "lambda" == n.getName() ));
       n.setType(libsbml.AST_FUNCTION);
       n.setName( "f");
       assertTrue((  "f" == n.getName() ));
       n.setType(libsbml.AST_FUNCTION_DELAY);
       assertTrue((  "f" == n.getName() ));
       n.setName(null);
       assertTrue((  "delay" == n.getName() ));
       n.setType(libsbml.AST_FUNCTION);
       assertTrue( n.getName() == null );
       n.setType(libsbml.AST_FUNCTION_ABS);
       assertTrue((  "abs" == n.getName() ));
       n.setType(libsbml.AST_FUNCTION_ARCCOS);
       assertTrue((  "arccos" == n.getName() ));
       n.setType(libsbml.AST_FUNCTION_TAN);
       assertTrue((  "tan" == n.getName() ));
       n.setType(libsbml.AST_FUNCTION_TANH);
       assertTrue((  "tanh" == n.getName() ));
       n.setType(libsbml.AST_LOGICAL_AND);
       assertTrue((  "and" == n.getName() ));
       n.setType(libsbml.AST_LOGICAL_NOT);
       assertTrue((  "not" == n.getName() ));
       n.setType(libsbml.AST_LOGICAL_OR);
       assertTrue((  "or" == n.getName() ));
       n.setType(libsbml.AST_LOGICAL_XOR);
       assertTrue((  "xor" == n.getName() ));
       n.setType(libsbml.AST_RELATIONAL_EQ);
       assertTrue((  "eq" == n.getName() ));
       n.setType(libsbml.AST_RELATIONAL_GEQ);
       assertTrue((  "geq" == n.getName() ));
       n.setType(libsbml.AST_RELATIONAL_LT);
       assertTrue((  "lt" == n.getName() ));
       n.setType(libsbml.AST_RELATIONAL_NEQ);
       assertTrue((  "neq" == n.getName() ));
       n = null;
 }
开发者ID:TotteKarlsson,项目名称:roadrunner,代码行数:54,代码来源:TestASTNode.cs

示例6: 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

示例7: test_ValidASTNode_returnsBoolean

 public void test_ValidASTNode_returnsBoolean()
 {
     ASTNode node = new ASTNode ( libsbml.AST_LOGICAL_AND );
       assertEquals( true, node.returnsBoolean() );
       node.setType(libsbml.AST_LOGICAL_NOT);
       assertEquals( true, node.returnsBoolean() );
       node.setType(libsbml.AST_LOGICAL_OR);
       assertEquals( true, node.returnsBoolean() );
       node.setType(libsbml.AST_LOGICAL_XOR);
       assertEquals( true, node.returnsBoolean() );
       node.setType(libsbml.AST_FUNCTION_PIECEWISE);
       assertEquals( true, node.returnsBoolean() );
       node.setType(libsbml.AST_RELATIONAL_EQ);
       assertEquals( true, node.returnsBoolean() );
       node.setType(libsbml.AST_RELATIONAL_GEQ);
       assertEquals( true, node.returnsBoolean() );
       node.setType(libsbml.AST_RELATIONAL_GT);
       assertEquals( true, node.returnsBoolean() );
       node.setType(libsbml.AST_RELATIONAL_LEQ);
       assertEquals( true, node.returnsBoolean() );
       node.setType(libsbml.AST_RELATIONAL_LT);
       assertEquals( true, node.returnsBoolean() );
       node.setType(libsbml.AST_RELATIONAL_NEQ);
       assertEquals( true, node.returnsBoolean() );
       node.setType(libsbml.AST_CONSTANT_TRUE);
       assertEquals( true, node.returnsBoolean() );
       node.setType(libsbml.AST_CONSTANT_FALSE);
       assertEquals( true, node.returnsBoolean() );
 }
开发者ID:,项目名称:,代码行数:29,代码来源:

示例8: test_ASTNode_replaceChild

 public void test_ASTNode_replaceChild()
 {
     ASTNode node = new  ASTNode();
       ASTNode c1 = new  ASTNode();
       ASTNode c2 = new  ASTNode();
       ASTNode c3 = new  ASTNode();
       ASTNode newc = new  ASTNode();
       int i = 0;
       node.setType(libsbml.AST_LOGICAL_AND);
       c1.setName( "a");
       c2.setName( "b");
       c3.setName( "c");
       node.addChild(c1);
       node.addChild(c2);
       node.addChild(c3);
       assertTrue( node.getNumChildren() == 3 );
       assertTrue((  "and(a, b, c)" == libsbml.formulaToString(node) ));
       newc.setName( "d");
       i = node.replaceChild(0,newc);
       assertTrue( i == libsbml.LIBSBML_OPERATION_SUCCESS );
       assertTrue( node.getNumChildren() == 3 );
       assertTrue((  "and(d, b, c)" == libsbml.formulaToString(node) ));
       i = node.replaceChild(3,newc);
       assertTrue( i == libsbml.LIBSBML_INDEX_EXCEEDS_SIZE );
       assertTrue( node.getNumChildren() == 3 );
       assertTrue((  "and(d, b, c)" == libsbml.formulaToString(node) ));
       i = node.replaceChild(1,c1);
       assertTrue( i == libsbml.LIBSBML_OPERATION_SUCCESS );
       assertTrue( node.getNumChildren() == 3 );
       assertTrue((  "and(d, a, c)" == libsbml.formulaToString(node) ));
       node = null;
 }
开发者ID:TotteKarlsson,项目名称:roadrunner,代码行数:32,代码来源:TestASTNode.cs

示例9: 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

示例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_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

示例12: 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

示例13: test_ASTNode_units

 public void test_ASTNode_units()
 {
     int i;
       ASTNode n = new  ASTNode();
       n.setType(libsbml.AST_REAL);
       n.setValue(1.6);
       i = n.setUnits( "mole");
       assertTrue( i == libsbml.LIBSBML_OPERATION_SUCCESS );
       assertTrue( n.isSetUnits() == true );
       assertTrue((  "mole" == n.getUnits() ));
       i = n.unsetUnits();
       assertTrue( i == libsbml.LIBSBML_OPERATION_SUCCESS );
       assertTrue( n.isSetUnits() == false );
       assertTrue((  "" == n.getUnits() ));
       i = n.setUnits( "1mole");
       assertTrue( i == libsbml.LIBSBML_INVALID_ATTRIBUTE_VALUE );
       assertTrue( n.isSetUnits() == false );
       n.setType(libsbml.AST_FUNCTION);
       i = n.setUnits( "mole");
       assertTrue( i == libsbml.LIBSBML_UNEXPECTED_ATTRIBUTE );
       assertTrue( n.isSetUnits() == false );
       assertTrue((  "" == n.getUnits() ));
       n = null;
 }
开发者ID:TotteKarlsson,项目名称:roadrunner,代码行数:24,代码来源: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_ASTNode_isUMinus

 public void test_ASTNode_isUMinus()
 {
     ASTNode n = new  ASTNode();
       n.setType(libsbml.AST_MINUS);
       assertTrue( n.isUMinus() == false );
       n.addChild(new  ASTNode(libsbml.AST_NAME));
       assertTrue( n.isUMinus() == true );
       n = null;
 }
开发者ID:TotteKarlsson,项目名称:roadrunner,代码行数:9,代码来源:TestASTNode.cs


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