1
2
3
4
5
6
7
8
9
10
#![warn(rust_2018_idioms)]
#![allow(dead_code)]

//! `algae` is a collection of abstract algebraic structures implemented in
//! Rust. It begins by defining sets and eventually builds up to vector spaces
//! and Lie groups.

pub mod algaeset;
pub mod magma;
pub mod mapping;