honeycomb-core 0.11.0

Core structure implementation for combinatorial maps
Documentation
//! [`CMap3`] code
//!
//! This module contains code for the 3D implementation of combinatorial maps: [`CMap3`].
//!
//! The definitions are re-exported, direct interaction with this module
//! should be minimal, if existing at all.

pub mod basic_ops;
pub mod embed;
pub mod links;
pub mod orbits;
pub mod serialize;
pub mod sews;
pub mod structure;
pub mod utils;

/// Number of beta functions defined for [`CMap3`].
const CMAP3_BETA: usize = 4;

#[cfg(test)]
mod tests;