Skip to content

1.10.0

Compare
Choose a tag to compare
@leif-ibsen leif-ibsen released this 12 Apr 10:06
· 12 commits to master since this release

New in release 1.10.0:

  1. 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.

  2. 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+34

    The largest Bernoulli number that can be represented as a Double is bernoulli(258)