Skip to content
This repository has been archived by the owner on Nov 3, 2021. It is now read-only.

Version 0.20

Latest
Compare
Choose a tag to compare
@trizen trizen released this 25 Mar 18:08
· 4 commits to master since this release

ADDED

  • Added the remove(n,k) and bremove(n,k) methods, for removing all occurrences of the factor k from integer n. (acf1237)

IMPROVEMENTS

  • Re-implemented the mod method based on the identity: x % y = x - y*floor(x/y), which always returns the exact result, assuming that x and y are rational numbers. (a622167)

FIXES

  • Fixed a special case in modpow(x, y, z) when y < 0 and gcd(x, z) != 1. (f624550)
  • Fixed a minor issue in broot(x, y) when y is not an integer. (f635807)
  • Fixed a minor issue in bfpow(x, y) when y is a non-numeric scalar. (023b784)

All changes: 0.19...0.20