#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sbml/SBMLTypes.h>
#include "config.h"
#include "sbmlsolver/cvodedata.h"
#include "sbmlsolver/processAST.h"
#include "sbmlsolver/drawGraph.h"
#include "sbmlsolver/solverError.h"
#include <dotneato.h>
#include <gvrender.h>
Include dependency graph for drawGraph.c:
Defines | |
#define | WORDSIZE 10000 |
Functions | |
SBML_ODESOLVER_API int | drawJacoby (cvodeData_t *data, char *file, char *format) |
Draws a graph of the non-zero entries in the Jacobian matrix J = df/dx of an ODE system f(x,p,t) = dx/dt at the end-time of the last integration. | |
SBML_ODESOLVER_API int | drawSensitivity (cvodeData_t *data, char *file, char *format, double threshold) |
Draws a graph of the non-zero entries in the sensitivity matrix P = df/dp of an ODE system f(x,p,t) = dx/dt at the end-time of the last integration. | |
SBML_ODESOLVER_API int | drawModel (Model_t *m, char *file, char *format) |
Draws a bipartite graph of the reaction network in the passed SBML model `m' (as libSBML Model_t). |