1.10.0
New in release 1.10.0:
-
General performance improvements. In particular the 'modInverse' function has become faster.
If the modulus is a power of 2, it typically runs 10 times faster than it did before. -
The BFraction structure has a new static method 'bernoulli', which computes Bernoulli numbers. For example
print(BFraction.bernoulli(60))
print(BFraction.bernoulli(60).asDouble())would print
-1215233140483755572040304994079820246041491 / 56786730
-2.1399949257225335e+34The largest Bernoulli number that can be represented as a Double is bernoulli(258)