relmath-rs 0.1.0

Relation-first mathematics and scientific computing in Rust.
Documentation
1
2
3
4
5
6
7
8
9
//! Core relation types and algorithms.

mod binary;
mod unary;

/// Finite binary relation type.
pub use binary::BinaryRelation;
/// Finite unary relation type.
pub use unary::UnaryRelation;