├── .cargo └── config.toml ├── .gitignore ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── benches ├── geometry.rs └── operations.rs ├── rust-toolchain └── src ├── lib.rs ├── math ├── mod.rs ├── poison_safe.c └── poison_unsafe.c ├── nalgebra.rs ├── num_traits.rs └── poison ├── freeze.ll └── mod.rs /.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standard-ai/fast_fp/HEAD/.cargo/config.toml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standard-ai/fast_fp/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standard-ai/fast_fp/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standard-ai/fast_fp/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standard-ai/fast_fp/HEAD/README.md -------------------------------------------------------------------------------- /benches/geometry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standard-ai/fast_fp/HEAD/benches/geometry.rs -------------------------------------------------------------------------------- /benches/operations.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standard-ai/fast_fp/HEAD/benches/operations.rs -------------------------------------------------------------------------------- /rust-toolchain: -------------------------------------------------------------------------------- 1 | 1.56.1 2 | -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standard-ai/fast_fp/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/math/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standard-ai/fast_fp/HEAD/src/math/mod.rs -------------------------------------------------------------------------------- /src/math/poison_safe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standard-ai/fast_fp/HEAD/src/math/poison_safe.c -------------------------------------------------------------------------------- /src/math/poison_unsafe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standard-ai/fast_fp/HEAD/src/math/poison_unsafe.c -------------------------------------------------------------------------------- /src/nalgebra.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standard-ai/fast_fp/HEAD/src/nalgebra.rs -------------------------------------------------------------------------------- /src/num_traits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standard-ai/fast_fp/HEAD/src/num_traits.rs -------------------------------------------------------------------------------- /src/poison/freeze.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standard-ai/fast_fp/HEAD/src/poison/freeze.ll -------------------------------------------------------------------------------- /src/poison/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standard-ai/fast_fp/HEAD/src/poison/mod.rs --------------------------------------------------------------------------------