Revision 8fca345051c35ce7d76f4540d1dccfb9a3b9fa3f authored by Collin J. Sutton on 07 February 2014, 20:40:32 UTC, committed by Tom Quinn on 02 September 2016, 21:44:55 UTC
To regenerate Makefile, we use `config.status` (which re-runs `configure`
with all user-provided options).

Change-Id: Ia624505cf0f8dda5cdcfc6e28dc1813835d29993
1 parent 5362a7d
Raw File
romberg.h

#if defined(__cplusplus)
extern "C" {
#endif

double
dRombergO(void *CTX,double (*func)(void *, double),double a,double b,
	  double eps);
double
dRombergC(void *CTX,double (*func)(void *, double),double a,double b,
	  double eps);

#if defined(__cplusplus)
}

#endif
back to top