https://github.com/N-BodyShop/changa
Raw File
Tip revision: 6d94c026b58dc6505d49c0ac653a5abda38bd644 authored by Harshitha on 02 March 2015, 21:01:30 UTC
In the load balancers check whether the object is migratable before accessing its obj userdata
Tip revision: 6d94c02
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