|
44 | 44 |
|
45 | 45 | /// @defgroup GL-IO I/O Utility |
46 | 46 | /// @ingroup GL |
47 | | -/// @brief Comprehensive I/O stream support, parsing algorithms, and range-based formatting. |
| 47 | +/// @brief I/O stream operations, formatting, and serialization of graph data. |
48 | 48 | /// |
49 | 49 | /// This group provides the necessary infrastructure to seamlessly serialize, deserialize, and |
50 | | -/// visualize complex graph structures. By offering a robust set of stream manipulators, formatting |
51 | | -/// traits, and configuration options, it allows users to easily translate in-memory graphs to |
52 | | -/// and from standard streams, files, or custom string representations. |
| 50 | +/// visualize complex graph structures. By offering a robust set of stream manipulators, range |
| 51 | +/// formatting utilities, and configuration options, it allows users to easily translate |
| 52 | +/// in-memory graphs to and from standard streams, files, or custom string representations. |
53 | 53 |
|
54 | 54 | /// @defgroup GL-Traits Traits & Concepts |
55 | 55 | /// @ingroup GL |
|
83 | 83 | /// operations, these utilities are completely independent of graph theory semantics. They provide |
84 | 84 | /// a curated set of highly reusable, general-purpose tools that can smoothly integrate into any |
85 | 85 | /// modern C++ codebase. |
| 86 | + |
| 87 | +/// @defgroup HGL Hypergraph Library (HGL) |
| 88 | +/// @brief The top-level module defining the general-purpose C++ template hypergraph library. |
| 89 | +/// |
| 90 | +/// This module provides a comprehensive suite of memory-efficient hypergraph representations, |
| 91 | +/// highly customizable algorithms, and robust I/O facilities. Designed strictly around modern |
| 92 | +/// C++ paradigms, the library leverages templates and concepts to deliver an API that is fast, |
| 93 | +/// generic, and type-safe. It supports both undirected hypergraphs and backward-forward (bf) |
| 94 | +/// directed hypergraphs. |
| 95 | + |
| 96 | +/// @defgroup HGL-Core Core Hypergraph Components |
| 97 | +/// @ingroup HGL |
| 98 | +/// @brief Fundamental hypergraph data structures, element descriptors, and configuration tags. |
| 99 | +/// |
| 100 | +/// This group establishes the primary user interface for the HGL module, centered around the highly |
| 101 | +/// configurable @ref hgl::hypergraph "hypergraph" class. It provides the core data types, such as vertex |
| 102 | +/// and hyperedge descriptors, required to safely navigate and manipulate graph elements. |
| 103 | +/// |
| 104 | +/// Furthermore, this module defines the declarative tags (e.g., directedness and backend |
| 105 | +/// implementation types) that dictate both the behavioral semantics and the underlying memory |
| 106 | +/// layout of the instantiated hypergraphs. |
| 107 | + |
| 108 | +/// @defgroup HGL-Algorithm Hypergraph Algorithms |
| 109 | +/// @ingroup HGL |
| 110 | +/// @brief Generic hypergraph algorithms, search templates, and related utilities. |
| 111 | +/// |
| 112 | +/// This module provides hypergraph-specific algorithmic templates and implementations |
| 113 | +/// (such as forward and backward searches) designed to natively navigate the complex, |
| 114 | +/// high-order structure of hyperedges. |
| 115 | + |
| 116 | +/// @defgroup HGL-IO I/O Utility |
| 117 | +/// @ingroup HGL |
| 118 | +/// @brief I/O stream operations, formatting, and serialization of hypergraph data. |
| 119 | +/// |
| 120 | +/// Provides the necessary infrastructure to seamlessly serialize, deserialize, and visualize |
| 121 | +/// complex hypergraph structures. It utilizes shared stream manipulation options and range |
| 122 | +/// formatting utilities to easily translate in-memory hypergraphs to and from standard |
| 123 | +/// streams and files. |
| 124 | + |
| 125 | +/// @defgroup HGL-Traits Traits & Concepts |
| 126 | +/// @ingroup HGL |
| 127 | +/// @brief Type traits, template constraints, and compile-time metaprogramming utilities. |
| 128 | +/// |
| 129 | +/// These components form the strict conceptual backbone of the HGL module, used extensively |
| 130 | +/// to ensure internal type safety and correctness, while also constraining user-defined types |
| 131 | +/// to required structural contracts. |
| 132 | +/// |
| 133 | +/// @section concepts_link Detailed Concept Specifications |
| 134 | +/// For a detailed list of all HGL module's concepts and their formal requirements, please refer to |
| 135 | +/// the [HGL Concepts Documentation](hgl_concepts.md#hgl-concepts-documentation) page. |
| 136 | +/// |
| 137 | +/// > [!NOTE] |
| 138 | +/// > |
| 139 | +/// > Because hypergraphs share the same underlying implementation design and mechanisms as standard |
| 140 | +/// > graphs, they seamlessly reuse the same fundamental C++20 concepts. Therefore the HGL module |
| 141 | +/// > pulls in all standard graph traits, concept checkers, and metaprogramming utilities from the |
| 142 | +/// > GL module. To get an overview of these traits and concepts, please refer to the GL module's |
| 143 | +/// > @ref GL-Traits documentation page. |
| 144 | + |
| 145 | +/// @defgroup HGL-Types Generic Types |
| 146 | +/// @ingroup HGL |
| 147 | +/// @brief Independent, high-performance data structures and utility types. |
| 148 | +/// |
| 149 | +/// This module houses a variety of general-purpose data structures and types. Though they are |
| 150 | +/// utilized natively by hypergraph implementations, these components are carefully decoupled |
| 151 | +/// from specific hypergraph logic, they can be seamlessly extracted and utilized in broader |
| 152 | +/// contexts. |
| 153 | + |
| 154 | +/// @defgroup HGL-Util General Utilities |
| 155 | +/// @ingroup HGL |
| 156 | +/// @brief Practical, domain-agnostic C++ helpers, mathematical functions, and polyfills. |
| 157 | +/// |
| 158 | +/// These utilities provide a curated set of general-purpose tools that support the |
| 159 | +/// library's internal algorithms and hypergraph modeling operations, completely |
| 160 | +/// independent of strict hypergraph theory semantics. |
0 commit comments