#include #include "nr.h" using namespace std; void NR::gauleg(const DP x1, const DP x2, Vec_O_DP &x, Vec_O_DP &w) { const DP EPS=1.0e-14; int m,j,i; DP z1,z,xm,xl,pp,p3,p2,p1; int n=x.size(); m=(n+1)/2; xm=0.5*(x2+x1); xl=0.5*(x2-x1); for (i=0;i EPS); x[i]=xm-xl*z; x[n-1-i]=xm+xl*z; w[i]=2.0*xl/((1.0-z*z)*pp*pp); w[n-1-i]=w[i]; } }