This repository has been archived by the owner on Nov 3, 2021. It is now read-only.
ADDED
- Added the
remove(n,k)
andbremove(n,k)
methods, for removing all occurrences of the factork
from integern
. (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 thatx
andy
are rational numbers. (a622167)
FIXES
- Fixed a special case in
modpow(x, y, z)
wheny < 0
andgcd(x, z) != 1
. (f624550) - Fixed a minor issue in
broot(x, y)
wheny
is not an integer. (f635807) - Fixed a minor issue in
bfpow(x, y)
wheny
is a non-numeric scalar. (023b784)
All changes: 0.19...0.20