mirror of
https://github.com/boostorg/multiprecision.git
synced 2026-01-29 19:52:10 +00:00
more debug: last bit is wrong. Should be zeros when doing try_number<R>("0.74981689453125");
This commit is contained in:
@@ -89,6 +89,9 @@ std::cout << "norm = " << norm << ", ";
|
||||
std::cout << "ex = " << ex << ", ";
|
||||
std::cout << "pos = " << pos << ", ";
|
||||
std::cout << "bits.size() = " << bits.size() << std::endl;
|
||||
for (auto c : bits)
|
||||
std::cout << int(c);
|
||||
std::cout << std::endl;
|
||||
*/
|
||||
BOOST_ASSERT((ex <= 0) and (pos < int(bits.size())) and (pos >= 0));
|
||||
bits[pos] = 1;
|
||||
|
||||
Reference in New Issue
Block a user