项目作者: unageek

项目描述 :
A Rust implementation of set-based interval arithmetic
高级语言: Rust
项目地址: git://github.com/unageek/inari.git
创建时间: 2020-07-02T16:44:38Z
项目社区:https://github.com/unageek/inari

开源协议:MIT License

下载


🦊 inari

crates.io
docs
coverage
rustc 1.65+

inari is a Rust implementation of interval arithmetic.

It conforms to IEEE Std 1788.1-2017. It also implements a subset of IEEE Std 1788-2015.

Supported Platforms

The following CPUs are supported and continuously tested:

  • x86-64

    Haswell-based and newer processors are supported.

    You need to specify the target CPU when building a crate that depends on inari. One way to do that is by using a configuration file in your project (see example; you may want to change native to haswell for the best compatibility if you are going to distribute binaries).

  • AArch64 (ARM64)

When using the Cargo feature gmp (see below), target platforms are limited to those that are supported by the gmp-mpfr-sys crate. For example, MSVC is not supported.

Cargo Features

  • gmp (enabled by default) - Enables operations that depend on GMP and MPFR. You can opt out of the feature to reduce dependencies. Even in that case, you still have access to all operations required by certain kinds of tasks, such as making fast robust predicates for computational geometry.

Changelog

Building the Documentation Locally

  1. RUSTDOCFLAGS="--cfg docsrs --html-in-header /path/to/inari/src/_docs/header.html" cargo doc --open

Ensure that the absolute path to header.html is specified.

  • Graphest - A faithful graphing calculator.

References