Revision c68d71addb81bcd80823cc8c69f0d03962c0cbe8 authored by Thomas Quinn on 13 December 2015, 01:08:22 UTC, committed by Thomas Quinn on 13 December 2015, 01:08:22 UTC
Change-Id: I81318c3a414129aee0df10475c76d63784ccc870
1 parent 5a980e7
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