Loading src/libnptm/sph_subs.cpp +2 −3 Original line number Diff line number Diff line Loading @@ -99,8 +99,7 @@ void cbf(int n, dcomplex z, int &nm, dcomplex *csj) { * point for backward recurrence * ========================================================== */ double zz = real(z) * real(z) + imag(z) * imag(z); double a0 = sqrt(zz); double a0 = cabs(z); nm = n; if (a0 < 1.0e-60) { for (int k = 2; k <= n + 1; k++) { Loading Loading
src/libnptm/sph_subs.cpp +2 −3 Original line number Diff line number Diff line Loading @@ -99,8 +99,7 @@ void cbf(int n, dcomplex z, int &nm, dcomplex *csj) { * point for backward recurrence * ========================================================== */ double zz = real(z) * real(z) + imag(z) * imag(z); double a0 = sqrt(zz); double a0 = cabs(z); nm = n; if (a0 < 1.0e-60) { for (int k = 2; k <= n + 1; k++) { Loading