Revision 0cd087ff237b95be1a29c928039d7107809742c8 authored by Tom Quinn on 11 June 2012, 22:36:21 UTC, committed by Tim Haines on 12 August 2016, 05:26:41 UTC
compile.

Change-Id: Ic94f1dfbfc1c39c2d174a2ee974d3a1bd09c7f85
1 parent 4b03974
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