ultragraph 0.5.4

Hypergraph data structure.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// SPDX-License-Identifier: MIT
// Copyright (c) "2023" . The DeepCausality Authors. All Rights Reserved.

// Alias type renames the container type to UltraGraph
pub use crate::alias::UltraGraph;
// Errors
pub use crate::errors::UltraGraphError;
// Protocols
pub use crate::protocols::graph_algorithms::GraphAlgorithms;
pub use crate::protocols::graph_like::GraphLike;
pub use crate::protocols::graph_root::GraphRoot;
pub use crate::protocols::graph_storage::GraphStorage;
// Storage implementation
pub use crate::storage::matrix_graph::UltraMatrixGraph;
// Types
pub use crate::types::ultra_graph::UltraGraphContainer;