Revert "Catch up the consequences of Number changes"

This reverts commit 0175dd70db.
This commit is contained in:
Ed Hennis
2025-11-12 19:15:00 -05:00
parent 2e34506835
commit 694abd1c79
15 changed files with 24 additions and 275 deletions

View File

@@ -53,8 +53,7 @@ public:
constexpr static rep maxMantissa = minMantissa * 10 - 1;
static_assert(maxMantissa == 9'999'999'999'999'999LL);
constexpr static rep maxIntValue = maxMantissa / 10;
static_assert(maxIntValue == 999'999'999'999'999LL);
constexpr static rep maxIntValue = minMantissa / 10;
// The range for the exponent when normalized
constexpr static int minExponent = -32768;