We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents dd9490a + 943d357 commit 044012fCopy full SHA for 044012f
src/SincCoeffs.cc
@@ -39,7 +39,15 @@ namespace base {
39
namespace {
40
41
// Convenient wrapper for a Bessel function
42
-inline double J1(double const x) { return boost::math::cyl_bessel_j(1, x); }
+inline double J1(double const x) {
43
+ // Some versions of boost assert that x >= 0
44
+ // which fails for NaN. Retain previous behavior
45
+ // and return NaN for NaN.
46
+ if (std::isnan(x)) {
47
+ return x;
48
+ }
49
+ return boost::math::cyl_bessel_j(1, x);
50
+}
51
52
// sinc function
53
template <typename T>
0 commit comments