1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
//! # honeycomb-core
//!
//! This crate implements all basic structures and methods for
//! 2D and 3D combinatorial map modeling.
//!
//! This documentation focus on the implementation side of things and API usage, for more
//! formal information about combinatorial maps, refer to the **Definitions** section of
//! the [user guide][UG].
//!
//! ## Features
//!
//! The `par-internals` feature can be enabled so that `CMap` structures use `rayon` internally
//! to accelerate some methods (e.g. `par_extend` for new element additions). This may also lead
//! to changes in performance due to first-touch mechanisms (to be confirmed).
//!
//! [UG]:https://lihpc-computational-geometry.github.io/honeycomb/
// ------ CUSTOM LINTS
// --- enable doc_auto_cfg feature if compiling in nightly
// ------ PUBLIC API
// re-export since we use their items in the API
pub use fast_stm as stm;