/* this is the header file for integration routines with complex functions */ #ifndef cint_h #define cint_h #include #include #include dcomplex cint_gauss(dcomplex (*cfunc)(double), double a, double b, int n ); dcomplex cint_gauss2(dcomplex (*cfunc2)(double), double a, double b, int n ); dcomplex cint_gauss3(dcomplex (*cfunc3)(double), double a, double b, int n ); dcomplex cint_gauss4(dcomplex (*cfunc4)(double), double a, double b, int n ); #endif