fracture()
andfrac_mat()
no longer return an error when receiving a vector containingNA
orInf
values (#14).fracture(NA)
now returnsNA
.fracture(Inf)
now returns"Inf/1"
.
- Fixed a bug where
frac_style()
would print integers in mixedfracture
s as"1 ⁰/₀"
instead of"1"
(#12).
- The second argument to
fracture()
andfrac_mat()
is now...
, which must be empty. As a result, all arguments besidesx
must now be named. (#5) fracture()
andfrac_mat()
now default to a denominator of1
whenx
equals0
or1
. Previously, these would default to a denominator ofmax_denom
.max_denom
is still used as the denominator whenx
is0
or1
± ε. (#6)
fracture()
andfrac_mat()
gain the argumentdenom
, which allows the user to set an explicit denominator used by all fractions. (#5)
- The
print()
method forfracture
s now puts quotes around mixed fractions to increase legibility. (#7) - Updated
testthat
to 3rd edition. (#5)
- Implemented STRICT_R_HEADERS in accordance with RcppCore/Rcpp#1158
- Fixed bug where certain fractions (e.g.
frac_mat(1307.36, base_10 = TRUE)
) would cause an floating point rounding error.- Reimplemented
decimal_to_fraction_base_10()
withdouble
rather thanint
. - Added tests to cover all base_10 fractions below 10,000/10,000 (reduced to 100/100 when testing on CRAN) and a random sample of base_10 fractions below 10,000,000/10,000,000.
- Reimplemented
frac_mat()
'smax_denom
should be less than the inverse square root of machine double epsilon.
- Added
frac_style()
which formats fractures using Unicode superscripts and subscripts. - Added
is.frac_mat()
which tests if a matrix is formatted like the output offrac_mat()
.
- Fixed bug where certain fractions (e.g. 16/113) would cause an integer overflow in C++.
- Reimplemented
decimal_to_fraction_cont()
withdouble
rather thanint
. - Added tests to cover all fractions below 1000/1000 (reduced to 100/100 when testing on CRAN) and a random sample of fractions below 10,000,000/10,000,000.
- Reimplemented
- Fixed bug with fracture math where only the first element would be returned.
- Added error handling for
NA
and infinite inputs tofrac_mat()
.
- Added
pkgdown
site.
- Initial release.