changa 3.5
Loading...
Searching...
No Matches
runge.h
1/*
2 * Runge-Kutta integrator originally written for PKDGRAV by Thomas
3 * Quinn
4 */
5void
6RungeKutta(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);