Skip to content

Commit 044012f

Browse files
authored
Merge pull request #297 from lsst/tickets/DM-45545
DM-45545: Trap NaN before calling boost API
2 parents dd9490a + 943d357 commit 044012f

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

src/SincCoeffs.cc

+9-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,15 @@ namespace base {
3939
namespace {
4040

4141
// Convenient wrapper for a Bessel function
42-
inline double J1(double const x) { return boost::math::cyl_bessel_j(1, x); }
42+
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+
}
4351

4452
// sinc function
4553
template <typename T>

0 commit comments

Comments
 (0)