Project Expansion

Project Expansion

4M Downloads

EMC values above the max Long limit not being formatted properly.

DonovanDMC opened this issue ยท 1 comments

commented

EMC Values bigger than Java's Long.MAX_VALUE (9,223,372,036,854,775,807, 9 Quintillion) are currently not formatted at all, the current suspect is incorrect number comparisons, which fail as numbers get larger. It is safe to assume that after Double.MAX_VALUE (1.7976931348623157e+308), a crash or at least some kind of breaking would happen, but it's practically impossible to get that high naturally. I'm looking into ways to fix this, such as making everything a biginteger.

commented