Revision fcf938319dce2f5524323ab349ea22e29f8adb5b authored by Thomas Quinn on 17 May 2013, 16:59:38 UTC, committed by Thomas Quinn on 17 May 2013, 16:59:38 UTC
2 parent s 1736b20 + a37614b
Raw File
runge.h
/*
 * Runge-Kutta integrator originally written for PKDGRAV by Thomas
 * Quinn
 */
void
RungeKutta(void *CTX, 
	   void (*deriv)(void *, double, double *, double*),
	   int nDep,		/* number of dependent variables */
	   double tin,		/* independent variable */
	   double *xin,		/* array of input */
	   double tout,
	   double *xout,		/* array of output */
	   int nSteps);
back to top