astrorama / SourceXtractorPlusPlus

SourceXtractor++, the next generation SExtractor
https://astrorama.github.io/SourceXtractorPlusPlus/
GNU Lesser General Public License v3.0
72 stars 9 forks source link

Feature/skip wcserrors #562

Closed mkuemmel closed 6 months ago

marcschefer commented 6 months ago

It looks like checking for infinity is unrelaible with fastmath enabled:

  BOOST_CHECK(std::isinf(std::numeric_limits<double>::infinity())); // PASSES
  double d = std::numeric_limits<double>::infinity();
  BOOST_CHECK(std::isinf(d)); // FAILS

So I'll just disable that unit test for now