changa  3.5
 All Classes Files Functions Variables Typedefs Enumerations Friends Macros Groups Pages
runge.h
1 /*
2  * Runge-Kutta integrator originally written for PKDGRAV by Thomas
3  * Quinn
4  */
5 void
6 RungeKutta(void *CTX,
7  void (*deriv)(void *, double, double *, double*),
8  int nDep, /* number of dependent variables */
9  double tin, /* independent variable */
10  double *xin, /* array of input */
11  double tout,
12  double *xout, /* array of output */
13  int nSteps);