https://github.com/huonw/float
Arbitrary precision floating point in Rust
https://github.com/huonw/float
Last synced: 3 months ago
JSON representation
Arbitrary precision floating point in Rust
- Host: GitHub
- URL: https://github.com/huonw/float
- Owner: huonw
- License: apache-2.0
- Created: 2015-10-30T03:33:33.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-11-12T13:43:54.000Z (over 9 years ago)
- Last Synced: 2025-03-26T10:48:08.336Z (3 months ago)
- Language: Rust
- Homepage: http://huonw.github.io/float/float/
- Size: 0 Bytes
- Stars: 19
- Watchers: 3
- Forks: 0
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- License: LICENSE-APACHE
Awesome Lists containing this project
README
# Arbitrary precision floats
[](https://travis-ci.org/huonw/float) [](https://coveralls.io/github/huonw/float?branch=master)
The `Float` type is an arbitrary precision float. It supports
correctly rounded computation of arithmetic (`+`, `-`, `*`, `/`),
square roots and precision conversions. It makes no claims to high
performance, but does try to keep it in mind.Built on [`ramp`](https://github.com/Aatch/ramp), and implemented with
a lot of reference to [1].[1]: Muller, Jean-Michel; Brisebarre, Nicolas; de Dinechin, Florent; Jeannerod, Claude-Pierre; Lefèvre, Vincent; Melquiond, Guillaume; Revol, Nathalie; Stehlé, Damien; Torres, Serge (2010). *Handbook of Floating-Point Arithmetic.* Birkhäuser. ISBN 978-0-8176-4705-6.