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.
//!
//! Generative testing support for `un_algebra` axioms and
//! properties.
//!
//! The `tests` module provides random value generators and testing
//! configuration helper functions for `un_algebra` generative tests.
//!
pub mod float;
pub mod config;


// Make sub-modules visible in this module.
pub use self::config::*;
pub use self::float::*;