libsbmlcs.ASTNode.getReal C# (CSharp) Method

getReal() public method

public getReal ( ) : double
return double
        public double getReal()
        {
            double ret = libsbmlPINVOKE.ASTNode_getReal(swigCPtr);
            return ret;
        }

Usage Example

Esempio n. 1
0
 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 );
 }
All Usage Examples Of libsbmlcs.ASTNode::getReal