mesh-sieve 4.0.1

Modular, high-performance Rust library for mesh and data management, designed for scientific computing and PDE codes.
Documentation
1
2
3
4
5
6
7
8
//! Overlap module: provides types and utilities for managing overlap and delta
//! information in distributed mesh partitioning.
//!
//! This module re-exports the [`overlap`] and [`delta`] submodules.

pub mod delta;
pub mod overlap;
pub mod perf;