un_algebra 0.9.0

Simple implementations of selected abstract algebraic structures--including groups, rings, and fields. Intended for self-study of abstract algebra concepts and not for production use.
//!
//! Numeric support module for floating point types.
//!
//! Unfortunately, floating point numbers are only an approximation to
//! the infinitude of real numbers and they do not reliably implement
//! basic arithmetic properties like associativity or commutativity.
//!
//! The `numeric` module provides traits and helper functions for
//! working with floating point number types. This includes floating
//! point absolute and relative error comparisons with an "epsilon"
//! term.
//!
pub mod equal;
pub mod order;


// Make sub-modules visible in the this module.
pub use self::equal::*;
pub use self::order::*;