Silent NAN (with warning) instead of crash for singular Bessel at zero
This commit is contained in:
parent
3479721455
commit
cf2aca7f03
|
@ -52,6 +52,11 @@ static inline complex double spherical_yn(qpms_l_t l, complex double z) {
|
|||
qpms_errno_t qpms_sph_bessel_realx_fill(qpms_bessel_t typ, qpms_l_t lmax, double x, complex double *result_array) {
|
||||
int retval;
|
||||
double tmparr[lmax+1];
|
||||
if (typ != QPMS_BESSEL_REGULAR && x == 0) {
|
||||
for (int l = 0; l <= lmax; ++l) result_array[l] = NAN + I*NAN;
|
||||
QPMS_WARN("Evaluating singular Bessel functions at zero!");
|
||||
return QPMS_SUCCESS; // Really?
|
||||
}
|
||||
switch(typ) {
|
||||
case QPMS_BESSEL_REGULAR:
|
||||
retval = gsl_sf_bessel_jl_steed_array(lmax, x, tmparr);
|
||||
|
|
Loading…
Reference in New Issue