| Age | Commit message (Expand) | Author | Lines |
| 2025-04-18 | Combine the source files for `fmod` | Trevor Gross | -31/+27 |
| 2025-04-18 | Ensure all public functions are marked `no_panic` | Trevor Gross | -0/+15 |
| 2025-04-18 | ci: Account for `PR_NUMBER` being set to an empty string | Trevor Gross | -1/+1 |
| 2025-04-18 | Ensure configure.rs changes trigger rebuilds | Trevor Gross | -0/+3 |
| 2025-04-17 | ci: Increase the timeout for extensive tests | Trevor Gross | -1/+1 |
| 2025-04-17 | ci: Require `ci: allow-many-extensive` if a threshold is exceeded | Trevor Gross | -3/+25 |
| 2025-04-17 | ci: Allow skipping extensive tests with `ci: skip-extensive` | Trevor Gross | -30/+73 |
| 2025-04-17 | ci: Cancel jobs when a new push happens | Trevor Gross | -0/+5 |
| 2025-04-17 | Combine the source files for more generic implementations | Trevor Gross | -804/+819 |
| 2025-04-17 | Make `assert_biteq!` not rely on having `Int` in scope | Trevor Gross | -9/+9 |
| 2025-04-17 | Add `NEG_NAN` to `Float` | Trevor Gross | -4/+22 |
| 2025-04-16 | fmod: Correct the normalization of subnormals | Trevor Gross | -2/+2 |
| 2025-04-16 | fmod: Add regression tests for subnormal issue | Trevor Gross | -2/+24 |
| 2025-04-15 | Implement rounding for the hex float parsing and prepare to improve error han... | quaternic | -111/+405 |
| 2025-04-09 | Add assembly version of simple operations on aarch64 | Trevor Gross | -28/+155 |
| 2025-04-08 | Resolve small errors identified by recent clippy | Trevor Gross | -1/+1 |
| 2025-04-08 | Replace calls to `core::arch` intrinsics with assembly | Trevor Gross | -15/+20 |
| 2025-03-18 | Upgrade all dependencies to the latest | Trevor Gross | -25/+20 |
| 2025-02-24 | Gate another assertion behind `compiler-builtins` | Trevor Gross | -0/+1 |
| 2025-02-24 | Configure out remaining formatting when `compiler-builtins` is set | Trevor Gross | -4/+38 |
| 2025-02-24 | Ignore unused variables when `compiler-builtins` is set | Trevor Gross | -5/+7 |
| 2025-02-23 | Resolve monomorphization errors in `compiler-builtins` | Trevor Gross | -2/+25 |
| 2025-02-23 | Make the compiler-builtins test more accurately mirror compiler-builtins | Trevor Gross | -185/+186 |
| 2025-02-23 | ci: Pin the nightly toolchain for aarch64 jobs | Trevor Gross | -0/+4 |
| 2025-02-12 | Use `git ls-files` rather than manually globbing for tidy | Trevor Gross | -28/+26 |
| 2025-02-12 | Make `fma` a trait method on `Float` | Trevor Gross | -25/+30 |
| 2025-02-12 | fma refactor 3/3: combine `fma` public API with its implementation | Trevor Gross | -125/+161 |
| 2025-02-12 | fma refactor 2/3: move math/generic/fma.rs to math/fma.rs | Trevor Gross | -0/+0 |
| 2025-02-12 | fma refactor 1/3: remove math/fma.rs | Trevor Gross | -40/+0 |
| 2025-02-12 | Scale test iteration count at a later point | Trevor Gross | -16/+21 |
| 2025-02-11 | Add a way to print inputs on failure | Trevor Gross | -8/+27 |
| 2025-02-11 | Rename `Float::exp` to `Float::ex` | Trevor Gross | -11/+10 |
| 2025-02-11 | Check exact values for specified cases | Trevor Gross | -3/+21 |
| 2025-02-11 | Add `roundeven{,f,f16,f128}` | Trevor Gross | -101/+363 |
| 2025-02-11 | Fix parsing of negative hex float literals in util | Trevor Gross | -1/+1 |
| 2025-02-10 | Increase allowed offset from infinity for ynf | Trevor Gross | -1/+1 |
| 2025-02-10 | Add `fminimum`, `fmaximum`, `fminimum_num`, and `fmaximum_num` | Trevor Gross | -31/+997 |
| 2025-02-10 | Combine `fmin{,f,f16,f128}` and `fmax{,f,f16,128}` into a single file | Trevor Gross | -64/+65 |
| 2025-02-10 | Small refactor of bigint tests | Trevor Gross | -31/+34 |
| 2025-02-10 | Eliminate the use of `force_eval!` in `ceil`, `floor`, and `trunc` | Trevor Gross | -37/+220 |
| 2025-02-10 | Migrate away from nonfunctional `fenv` stubs | Trevor Gross | -141/+240 |
| 2025-02-10 | Introduce a trait constant for the minimum positive normal value | Trevor Gross | -0/+10 |
| 2025-02-09 | Implement `u256` with two `u128`s rather than `u64` | Trevor Gross | -188/+298 |
| 2025-02-09 | ci: Pin the nightly toolchain for i686-pc-windows-gnu | Trevor Gross | -1/+2 |
| 2025-02-09 | Increase the tolerance for `jn` and `yn` | Trevor Gross | -12/+14 |
| 2025-02-08 | Replace an `assert!` with `debug_assert!` in `u256::shr` | Trevor Gross | -1/+23 |
| 2025-02-08 | Change how operators are `black_box`ed | Trevor Gross | -7/+3 |
| 2025-02-08 | Add simple icount benchmarks for `u256` operations | Trevor Gross | -1/+104 |
| 2025-02-07 | Decrease the allowed error for `cbrt` | Trevor Gross | -2/+3 |
| 2025-02-07 | Port the CORE-MATH version of `cbrt` | Trevor Gross | -103/+216 |