Home
last modified time | relevance | path

Searched refs:fd_math (Results 1 – 20 of 20) sorted by relevance

/dports/biology/py-python-libsbml/python-libsbml-5.19.0/libsbml_source/src/bindings/ruby/test/math/
H A DTestMathReadFromFile1.rb50 fd_math = fd.getMath()
51 assert( fd_math.getType() == LibSBML::AST_LAMBDA )
52 assert( fd_math.getNumChildren() == 2 )
53 assert (( "lambda(x, )" == LibSBML::formulaToString(fd_math) ))
54 assert( fd_math.getParentSBMLObject() == fd )
55 child = fd_math.getRightChild()
H A DTestMathReadFromFile2.rb49 fd_math = fd.getMath()
50 assert( fd_math.getType() == LibSBML::AST_LAMBDA )
51 assert( fd_math.getNumChildren() == 1 )
52 assert (( "lambda()" == LibSBML::formulaToString(fd_math) ))
53 child = fd_math.getChild(0)
/dports/biology/libsbml/libsbml-5.19.0/src/bindings/ruby/test/math/
H A DTestMathReadFromFile1.rb50 fd_math = fd.getMath()
51 assert( fd_math.getType() == LibSBML::AST_LAMBDA )
52 assert( fd_math.getNumChildren() == 2 )
53 assert (( "lambda(x, )" == LibSBML::formulaToString(fd_math) ))
54 assert( fd_math.getParentSBMLObject() == fd )
55 child = fd_math.getRightChild()
H A DTestMathReadFromFile2.rb49 fd_math = fd.getMath()
50 assert( fd_math.getType() == LibSBML::AST_LAMBDA )
51 assert( fd_math.getNumChildren() == 1 )
52 assert (( "lambda()" == LibSBML::formulaToString(fd_math) ))
53 child = fd_math.getChild(0)
/dports/biology/py-python-libsbml/python-libsbml-5.19.0/libsbml_source/src/bindings/python/test/math/
H A DTestMathReadFromFile1.py54 fd_math = fd.getMath()
55 self.assert_( fd_math.getType() == libsbml.AST_LAMBDA )
56 self.assert_( fd_math.getNumChildren() == 2 )
57 self.assert_(( "lambda(x, )" == libsbml.formulaToString(fd_math) ))
58 self.assert_( fd_math.getParentSBMLObject() == fd )
59 child = fd_math.getRightChild()
H A DTestMathReadFromFile2.py53 fd_math = fd.getMath()
54 self.assert_( fd_math.getType() == libsbml.AST_LAMBDA )
55 self.assert_( fd_math.getNumChildren() == 1 )
56 self.assert_(( "lambda()" == libsbml.formulaToString(fd_math) ))
57 child = fd_math.getChild(0)
/dports/biology/libsbml/libsbml-5.19.0/src/bindings/python/test/math/
H A DTestMathReadFromFile1.py54 fd_math = fd.getMath()
55 self.assert_( fd_math.getType() == libsbml.AST_LAMBDA )
56 self.assert_( fd_math.getNumChildren() == 2 )
57 self.assert_(( "lambda(x, )" == libsbml.formulaToString(fd_math) ))
58 self.assert_( fd_math.getParentSBMLObject() == fd )
59 child = fd_math.getRightChild()
H A DTestMathReadFromFile2.py53 fd_math = fd.getMath()
54 self.assert_( fd_math.getType() == libsbml.AST_LAMBDA )
55 self.assert_( fd_math.getNumChildren() == 1 )
56 self.assert_(( "lambda()" == libsbml.formulaToString(fd_math) ))
57 child = fd_math.getChild(0)
/dports/biology/py-python-libsbml/python-libsbml-5.19.0/libsbml_source/src/bindings/csharp/test/math/
H A DTestReadFromFile1.cs153 ASTNode fd_math = fd.getMath(); in test_read_MathML_1()
154 assertTrue( fd_math.getType() == libsbml.AST_LAMBDA ); in test_read_MathML_1()
155 assertTrue( fd_math.getNumChildren() == 2 ); in test_read_MathML_1()
156 assertTrue(( "lambda(x, )" == libsbml.formulaToString(fd_math) )); in test_read_MathML_1()
157 assertTrue( fd_math.getParentSBMLObject() == fd ); in test_read_MathML_1()
158 ASTNode child = fd_math.getRightChild(); in test_read_MathML_1()
H A DTestReadFromFile2.cs151 ASTNode fd_math = fd.getMath(); in test_read_MathML_2()
152 assertTrue( fd_math.getType() == libsbml.AST_LAMBDA ); in test_read_MathML_2()
153 assertTrue( fd_math.getNumChildren() == 1 ); in test_read_MathML_2()
154 assertTrue(( "lambda()" == libsbml.formulaToString(fd_math) )); in test_read_MathML_2()
155 ASTNode child = fd_math.getChild(0); in test_read_MathML_2()
/dports/biology/libsbml/libsbml-5.19.0/src/bindings/csharp/test/math/
H A DTestReadFromFile1.cs153 ASTNode fd_math = fd.getMath(); in test_read_MathML_1()
154 assertTrue( fd_math.getType() == libsbml.AST_LAMBDA ); in test_read_MathML_1()
155 assertTrue( fd_math.getNumChildren() == 2 ); in test_read_MathML_1()
156 assertTrue(( "lambda(x, )" == libsbml.formulaToString(fd_math) )); in test_read_MathML_1()
157 assertTrue( fd_math.getParentSBMLObject() == fd ); in test_read_MathML_1()
158 ASTNode child = fd_math.getRightChild(); in test_read_MathML_1()
H A DTestReadFromFile2.cs151 ASTNode fd_math = fd.getMath(); in test_read_MathML_2()
152 assertTrue( fd_math.getType() == libsbml.AST_LAMBDA ); in test_read_MathML_2()
153 assertTrue( fd_math.getNumChildren() == 1 ); in test_read_MathML_2()
154 assertTrue(( "lambda()" == libsbml.formulaToString(fd_math) )); in test_read_MathML_2()
155 ASTNode child = fd_math.getChild(0); in test_read_MathML_2()
/dports/biology/py-python-libsbml/python-libsbml-5.19.0/libsbml_source/src/sbml/math/test/
H A DTestReadFromFile1.cpp125 const ASTNode *fd_math = fd->getMath(); in START_TEST() local
127 fail_unless (fd_math->getType() == AST_LAMBDA, NULL); in START_TEST()
128 fail_unless (fd_math->getNumChildren() == 2, NULL); in START_TEST()
129 math = SBML_formulaToString(fd_math); in START_TEST()
132 fail_unless (fd_math->getParentSBMLObject() == fd, NULL); in START_TEST()
133 fail_unless (fd_math->getNumBvars() == 1); in START_TEST()
138 ASTNode *child = fd_math->getRightChild(); in START_TEST()
H A DTestReadFromFile2.cpp102 const ASTNode *fd_math = fd->getMath(); in START_TEST() local
104 fail_unless (fd_math->getType() == AST_LAMBDA, NULL); in START_TEST()
105 fail_unless (fd_math->getNumChildren() == 1, NULL); in START_TEST()
106 math = SBML_formulaToString(fd_math); in START_TEST()
114 ASTNode *child = fd_math->getChild(0); in START_TEST()
/dports/biology/libsbml/libsbml-5.19.0/src/sbml/math/test/
H A DTestReadFromFile1.cpp125 const ASTNode *fd_math = fd->getMath(); in START_TEST() local
127 fail_unless (fd_math->getType() == AST_LAMBDA, NULL); in START_TEST()
128 fail_unless (fd_math->getNumChildren() == 2, NULL); in START_TEST()
129 math = SBML_formulaToString(fd_math); in START_TEST()
132 fail_unless (fd_math->getParentSBMLObject() == fd, NULL); in START_TEST()
133 fail_unless (fd_math->getNumBvars() == 1); in START_TEST()
138 ASTNode *child = fd_math->getRightChild(); in START_TEST()
H A DTestReadFromFile2.cpp102 const ASTNode *fd_math = fd->getMath(); in START_TEST() local
104 fail_unless (fd_math->getType() == AST_LAMBDA, NULL); in START_TEST()
105 fail_unless (fd_math->getNumChildren() == 1, NULL); in START_TEST()
106 math = SBML_formulaToString(fd_math); in START_TEST()
114 ASTNode *child = fd_math->getChild(0); in START_TEST()
/dports/biology/libsbml/libsbml-5.19.0/src/bindings/java/test/org/sbml/libsbml/test/math/
H A DTestReadFromFile1.java148 ASTNode fd_math = fd.getMath(); in test_read_MathML_1() local
149 assertTrue( fd_math.getType() == libsbml.AST_LAMBDA ); in test_read_MathML_1()
150 assertTrue( fd_math.getNumChildren() == 2 ); in test_read_MathML_1()
151 assertTrue(libsbml.formulaToString(fd_math).equals( "lambda(x, )")); in test_read_MathML_1()
152 assertTrue( fd_math.getParentSBMLObject().equals(fd) ); in test_read_MathML_1()
153 ASTNode child = fd_math.getRightChild(); in test_read_MathML_1()
H A DTestReadFromFile2.java146 ASTNode fd_math = fd.getMath(); in test_read_MathML_2() local
147 assertTrue( fd_math.getType() == libsbml.AST_LAMBDA ); in test_read_MathML_2()
148 assertTrue( fd_math.getNumChildren() == 1 ); in test_read_MathML_2()
149 assertTrue(libsbml.formulaToString(fd_math).equals( "lambda()")); in test_read_MathML_2()
150 ASTNode child = fd_math.getChild(0); in test_read_MathML_2()
/dports/biology/py-python-libsbml/python-libsbml-5.19.0/libsbml_source/src/bindings/java/test/org/sbml/libsbml/test/math/
H A DTestReadFromFile1.java148 ASTNode fd_math = fd.getMath(); in test_read_MathML_1() local
149 assertTrue( fd_math.getType() == libsbml.AST_LAMBDA ); in test_read_MathML_1()
150 assertTrue( fd_math.getNumChildren() == 2 ); in test_read_MathML_1()
151 assertTrue(libsbml.formulaToString(fd_math).equals( "lambda(x, )")); in test_read_MathML_1()
152 assertTrue( fd_math.getParentSBMLObject().equals(fd) ); in test_read_MathML_1()
153 ASTNode child = fd_math.getRightChild(); in test_read_MathML_1()
H A DTestReadFromFile2.java146 ASTNode fd_math = fd.getMath(); in test_read_MathML_2() local
147 assertTrue( fd_math.getType() == libsbml.AST_LAMBDA ); in test_read_MathML_2()
148 assertTrue( fd_math.getNumChildren() == 1 ); in test_read_MathML_2()
149 assertTrue(libsbml.formulaToString(fd_math).equals( "lambda()")); in test_read_MathML_2()
150 ASTNode child = fd_math.getChild(0); in test_read_MathML_2()