https://github.com/N-BodyShop/changa
Raw File
Tip revision: 93919ef695304eb9b2d8ebdbf9a56aa6bea3a84b 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: 93919ef
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