1#![deny(missing_docs)] 2//! A library to make calculations with groups. 3//! 4//! This implements the [Schreier-Sims algorithm](https://en.wikipedia.org/wiki/Schreier%E2%80%93Sims_algorithm). 5 6pub mod group;