https://github.com/N-BodyShop/changa
Raw File
Tip revision: d8657e62f90b8728362f7ad23ba3bf0e489d5521 authored by Harshitha on 31 July 2014, 12:39:43 UTC
Pritish's changes to ChaNGa to use SMP cache
Tip revision: d8657e6
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