honeycomb-core 0.11.0

Core structure implementation for combinatorial maps
Documentation
//! [`CMap2`] code
//!
//! This module contains code for the 2D implementation of combinatorial maps: [`CMap2`].
//!
//! 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 [`CMap2`].
const CMAP2_BETA: usize = 3;

#[allow(unused_mut)]
#[cfg(test)]
mod tests;