Package org.sbml.libsbml

Examples of org.sbml.libsbml.ListOfFunctionDefinitions


   @Test
   @Ignore
      public void testEvaluateLightFunction() throws IOException {
          SBMLDocument light = libsbml.readSBML(Light.getAbsolutePath());
          Model m = light.getModel();
          ListOfFunctionDefinitions lofd = m.getListOfFunctionDefinitions();
          for (long i = 0; i < lofd.size(); i++) {
              FunctionDefinition fd = lofd.get(i);
            
              ASTNode root = convertSBMLMathToJavaMath(fd.getMath());
             
              System.err.println(new FormulaFormatter().formulaToString(root));
View Full Code Here

TOP

Related Classes of org.sbml.libsbml.ListOfFunctionDefinitions

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.