bigfloat
bigfloat
is a fast arbitrary precision math library optimized for computational geometry and geoinformatics.
It provides binary floating point:
- conversion from the JavaScript number type,
x = new BigFloat53(123.456)
- addition,
x.add(y)
- subtraction,
x.sub(y)
- multiplication,
x.mul(y)
- comparison,
x.deltaFrom(y)
aliasx.cmp(y)
- conversion to string in bases 2-36,
x.toString(10)
without ever losing any significant bits. Numbers are immutable in the above operations, so they return a new BigFloat. For efficiency, the following methods instead destructively change the value:
x.truncate(limbs)
rounds the fractional digits towards zero, tolimbs * 32
orlimbs * 53
bits.x.round(digits)
rounds approximately todigits
decimal places (to enough limbs to hold them).
Division is deliberately unsupported, because its result is generally inexact. Please use rational numbers instead. Note that floating point values in numerators and denominators are perfectly cromulent. If you need square roots or transcendental functions, use some other library.
There are two versions of the class, BigFloat32
and BigFloat53
with the same API but completely different internals as follows:
BigFloat32
- Arbitrarily long sequence of bits split into 32-bit integers ("limbs", effectively digits in base
2 ** 32
), somewhat like in the GMP library. - The decimal point is a position between limbs, splitting the list of limbs into integer and fractional halves.
- Dense representation: all bits between the most and least significant are stored.
- Optimized for exponents relatively close to zero, so the location of the decimal point is always present in the limb array, even if that introduces otherwise insignificant leading or trailing zero limbs.
- Precision is only limited by available memory.
- Uses integer math for best portability but runs slower.
BigFloat53
- Floating point expansion consisting of an unevaluated sum of components (JavaScript floating point numbers) ordered by increasing magnitude.
- Multiple representations exist for each number, depending on how bits are split between components (this is transparent: they still compare as equal).
- Each component can hold 1-53 bits of significand.
- Sparse representation: components consisting entirely of zeroes are not stored.
- Precision is limited by exponents representable in IEEE 754.
- Binary digits at positions less significant than
2 ** -1074
(smallest double precision denormal) will disappear. - Numbers rounding to
2 ** 1024
or greater will overflow spectacularly.
- Binary digits at positions less significant than
- Uses error free transformations (see JR Shewchuk.
Adaptive Precision Floating-Point Arithmetic and Fast Robust Geometric Predicates,
1997) and runs faster.
- Requires accurate rounding to nearest with ties to even as specified by EcmaScript 5.1 and up (section 8.5).
In both versions the least significant limb / component is stored first, because basic algorithms for arithmetic operations progress from the least to most significant digit while propagating carry. If carry causes the output to grow, adding a new limb at the end of the array is faster than adding it in the beginning.
TL;DR: Use BigFloat53
for speed or BigFloat32
for portability and to avoid under / overflow.
You may want to test with both to compare their speed and see if you run into overflow or any floating point portability issues on mobile platforms.
Optimization
In any longer iterated calculations involving multiplication, truncate
should be called regularly because otherwise significant bits will keep accumulating.
For example, squaring a number doubles the number of bits at every step, easily turning an algorithm with linear complexity into a quadratic one
(both in speed and space).
To avoid surprises, the basic operations allocate new objects for storing results. A second parameter can be given,
with a result BigFloat
object of the same type (32 or 53). Its contents will be destructively overwritten with the result,
to save a memory allocation. This avoids garbage collection related slowdowns in longer calculations.
Some care is needed in re-using temporary variables, because inputs cannot be simultaneously used as results:
x.add(y, w).sub(z, w)
fails because in the subtraction, w
is both the subtrahend and the difference.
Existing objects can also be re-initialized with:
- zero,
x.setZero()
- new value from a JavaScript number,
x.setValue(123.456)
Additionally, BigFloat53
objects support initialization from results of operations between two JavaScript numbers:
- sum,
x.setSum(12.34, 56.78)
- product,
x.setProduct(12.34, 56.78)
These use very fast double double arithmetic (error free transformations).
Speed
It's fast, see the Mandelbrot benchmark. Here's some example results:
Native JavaScript IEEE 754:
████████████████████████████████ // ██ 80000 frames per minute
bigfloat
:
████████████████████████████ 141 frames per minute
bignumber.js:
██████████ 48 frames per minute
big.js:
███████ 35 frames per minute
Getting started
git clone https://github.com/charto/bigfloat.git node_modules/bigfloat
cd node_modules/bigfloat && npm install
cd ../..
node
OR
npm install bigfloat
node
THEN
x = Math.pow(2, 53);
console.log(x + 1 - x); // Prints 0
BigFloat = require('bigfloat').BigFloat;
console.log(new BigFloat(x).add(1).sub(x).toString()); // Prints 1
License
Copyright (c) 2015- BusFaster Ltd
The paper doc/robustr.pdf
is copyright JR Shewchuk and licenced as detailed inside under "About this Report".