MCPcopy Index your code
hub / github.com/SergiusIW/noisy_float-rs

github.com/SergiusIW/noisy_float-rs @v0.2.0

Chat with this repo
repository ↗ · DeepWiki ↗ · release v0.2.0 ↗ · + Follow
194 symbols 226 edges 5 files 3 documented · 2%
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

noisy_float-rs

This is a Rust library containing floating point types that panic if they are set to an illegal value, such as NaN.

Crate

The Rust crate for this library can be found here.

Documentation

The documentation for this library can be found here.

Description

The name "Noisy Float" comes from the terms "quiet NaN" and "signaling NaN"; "signaling" was too long to put in a struct/crate name, so "noisy" is used instead, being the opposite of "quiet."

The standard types defined in noisy_float::types follow the principle demonstrated by Rust's handling of integer overflow: a bad arithmetic operation is considered an error, but it is too costly to check everywhere in optimized builds. For each floating point number that is created, a debug_assert! invocation is used to check if it is valid or not. This way, there are guarantees when developing code that floating point numbers have valid values, but during a release run there is no overhead for using these floating point types compared to using f32 or f64 directly.

This crate makes use of the num, bounded, signed and floating point traits in the popular num_traits crate. This crate can be compiled with no_std.

Examples

An example using the R64 type, which corresponds to finite f64 values.

use noisy_float::prelude::*;

fn geometric_mean(a: R64, b: R64) -> R64 {
    (a * b).sqrt() //used just like regular floating-point numbers
}

println!("geometric_mean(10.0, 20.0) = {}", geometric_mean(r64(10.0), r64(20.0)));
//prints 14.142...

An example using the N32 type, which corresponds to non-NaN f32 values. The float types in this crate are able to implement Eq and Ord properly, since NaN is not allowed.

use noisy_float::prelude::*;

let values = vec![n32(3.0), n32(-1.5), n32(71.3), N32::infinity()];
assert!(values.iter().cloned().min() == Some(n32(-1.5)));
assert!(values.iter().cloned().max() == Some(N32::infinity()));

License

Noisy_float is licensed under the Apache 2.0 License.

Extension points exported contracts — how you extend this code

FloatChecker (Interface)
Trait for checking whether a floating point number is *valid*. The implementation defines its own criteria for what con [3 …
src/lib.rs

Core symbols most depended-on inside this repo

r64
called by 20
src/types.rs
raw
called by 15
src/lib.rs
n64
called by 8
src/types.rs
finish
called by 7
src/lib.rs
matrix_vector_multiply
called by 2
benches/benchmark.rs
n32
called by 2
src/types.rs
r32
called by 2
src/types.rs
hash
called by 1
src/float_impl.rs

Shape

Method 161
Function 26
Class 6
Interface 1

Languages

Rust100%

Modules by API surface

src/float_impl.rs136 symbols
src/lib.rs46 symbols
src/checkers.rs5 symbols
src/types.rs4 symbols
benches/benchmark.rs3 symbols

For agents

$ claude mcp add noisy_float-rs \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact