https://github.com/N-BodyShop/changa
Raw File
Tip revision: 6d6acf276ad68864526b6a699838693e1c838219 authored by Robel Geda on 19 July 2017, 21:46:41 UTC
Combined Ewald Kernels
Tip revision: 6d6acf2
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