What value should this be????
| 2259 | } |
| 2260 | // What value should this be???? |
| 2261 | static number_type round_error() |
| 2262 | { |
| 2263 | // returns 0.5 |
| 2264 | // C++11 thread safe static initialization: |
| 2265 | static number_type value = get_round_error(); |
| 2266 | return value; |
| 2267 | } |
| 2268 | static constexpr typename boost::multiprecision::cpp_bin_float<Digits, DigitBase, Allocator, Exponent, MinE, MaxE>::exponent_type min_exponent = boost::multiprecision::cpp_bin_float<Digits, DigitBase, Allocator, Exponent, MinE, MaxE>::min_exponent; |
| 2269 | static constexpr typename boost::multiprecision::cpp_bin_float<Digits, DigitBase, Allocator, Exponent, MinE, MaxE>::exponent_type min_exponent10 = (min_exponent / 1000) * 301L; |
| 2270 | static constexpr typename boost::multiprecision::cpp_bin_float<Digits, DigitBase, Allocator, Exponent, MinE, MaxE>::exponent_type max_exponent = boost::multiprecision::cpp_bin_float<Digits, DigitBase, Allocator, Exponent, MinE, MaxE>::max_exponent; |
no test coverage detected