#include #include "_wright.h" using namespace std; extern "C" { npy_cdouble wrightomega(npy_cdouble zp) { complex z(zp.real, zp.imag); complex w = wright::wrightomega(z); return npy_cpack(real(w), imag(w)); } double wrightomega_real(double x) { return wright::wrightomega_real(x); } } // extern "C"