2
0
mirror of https://github.com/boostorg/math.git synced 2026-01-19 04:22:09 +00:00

Ignore float too small errors

This commit is contained in:
Matt Borland
2024-07-23 11:30:03 -04:00
parent 38596e29d3
commit 548d6f5f45
2 changed files with 8 additions and 0 deletions

View File

@@ -3,6 +3,10 @@
// Boost Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
#ifdef __CUDACC__
#pragma nv_diag_suppress 221
#endif
static const std::array<std::array<typename table_type<T>::type, 3>, 1830> beta_med_data = { {
{{ SC_(0.4883005917072296142578125), SC_(0.4883005917072296142578125), SC_(3.245912809500479157065104747353807392371) }},
{{ SC_(3.5808107852935791015625), SC_(0.4883005917072296142578125), SC_(1.007653173802923954909901438393379243537) }},

View File

@@ -10,6 +10,10 @@
# pragma warning (disable : 4180) // qualifier applied to function type has no meaning; ignored
#endif
#ifdef __CUDACC__
#pragma nv_diag_suppress 221
#endif
#include <boost/math/concepts/real_concept.hpp>
#define BOOST_TEST_MAIN
#include <boost/test/unit_test.hpp>