draeger-lab / SBSCL

The Systems Biology Simulation Core Library (SBSCL) provides an efficient and exhaustive Java implementation of methods to interpret the content of models encoded in the Systems Biology Markup Language (SBML) and its numerical solution.
https://draeger-lab.github.io/SBSCL/
GNU Lesser General Public License v3.0
20 stars 13 forks source link

Add functions in ASTNodeInterpreter class for calculating node values of SBML L3V2 models #42

Closed hemilpanchiwala closed 4 years ago

hemilpanchiwala commented 4 years ago

The SBML Level 3 Version 2 models contain some new math functions that need to be added to the SBSCL simulator. Currently, just NaN values are returned for these functions. These are functions that need to be added:

Some reference SBML L3V2 test cases: 1272(Quotient), 1273(Remainder), 1274(Implies), 1275(Max), and 1276(Min).

hemilpanchiwala commented 4 years ago

@draeger, Added the functions to SBSCL. Please review once.