Revision 9e4124409594163fdfb767961086a0af69548c35 authored by Lukasz Wesolowski on 15 April 2014, 22:59:06 UTC, committed by Tom Quinn on 03 September 2016, 00:03:03 UTC
Change-Id: I9aa4a1e3b41ad085535e1d47e2b86128a7b22a54
1 parent 07f4b23
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