libsbmlcs.KineticLaw.setMath C# (CSharp) Method

setMath() public method

public setMath ( ASTNode math ) : int
math ASTNode
return int
        public int setMath(ASTNode math)
        {
            int ret = libsbmlPINVOKE.KineticLaw_setMath(swigCPtr, ASTNode.getCPtr(math));
            return ret;
        }

Usage Example

コード例 #1
0
 public void test_KineticLaw()
 {
     KineticLaw kl = new KineticLaw(2,4);
       assertEquals( false, (kl.hasRequiredElements()) );
       kl.setMath(libsbml.parseFormula("kl"));
       assertEquals( true, kl.hasRequiredElements() );
       kl = null;
 }
All Usage Examples Of libsbmlcs.KineticLaw::setMath