Skip to content
This repository was archived by the owner on Apr 28, 2025. It is now read-only.

Commit 842b08b

Browse files
committed
Introduce a float extension trait and some numerical routines
1 parent 69cf64f commit 842b08b

File tree

2 files changed

+461
-1
lines changed

2 files changed

+461
-1
lines changed

crates/libm-test/src/lib.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@ mod f8_impl;
44
pub mod gen;
55
#[cfg(feature = "test-multiprecision")]
66
pub mod mpfloat;
7+
mod num;
78
pub mod op;
89
mod precision;
910
mod test_traits;
1011

1112
pub use f8_impl::f8;
12-
pub use libm::support::{Float, Int, IntTy};
13+
pub use libm::support::{Float, Int, IntTy, MinInt};
14+
pub use num::{FloatExt, logspace};
1315
pub use op::{BaseName, Identifier, MathOp, OpCFn, OpFTy, OpRustFn, OpRustRet};
1416
pub use precision::{MaybeOverride, SpecialCase, default_ulp};
1517
pub use test_traits::{CheckBasis, CheckCtx, CheckOutput, GenerateInput, Hex, TupleCall};

0 commit comments

Comments
 (0)