oxilean-std 0.1.2

OxiLean standard library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Geometric topology: 3-manifolds, knot surgery, JSJ decomposition, gluing matrices.
//!
//! This module provides:
//! - [`Manifold3`] — a 3-manifold with basic topological invariants
//! - [`HeegaardSplitting`] — Heegaard splitting data
//! - [`DehnSurgery`] — (p/q)-Dehn surgery specification
//! - [`JSJDecomposition`] — JSJ decomposition into geometric pieces
//! - [`Matrix2x2`] — 2×2 integer gluing matrices in SL(2,Z)
//! - Functions for computing Euler characteristics, Heegaard genus, Thurston geometry, etc.

pub mod functions;
pub mod types;

pub use functions::*;
pub use types::*;