Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/huonw/float
Arbitrary precision floating point in Rust
https://github.com/huonw/float
Last synced: about 1 month 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 (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-11-12T13:43:54.000Z (about 9 years ago)
- Last Synced: 2023-04-10T09:39:08.467Z (over 1 year ago)
- Language: Rust
- Homepage: http://huonw.github.io/float/float/
- Size: 0 Bytes
- Stars: 19
- Watchers: 4
- Forks: 0
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- License: LICENSE-APACHE
Awesome Lists containing this project
README
# Arbitrary precision floats
[![Build Status](https://travis-ci.org/huonw/float.svg?branch=master)](https://travis-ci.org/huonw/float) [![Coverage Status](https://coveralls.io/repos/huonw/float/badge.svg?branch=master&service=github)](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.