heapless_graphs 0.2.3

Implementation of composable graphs for no_alloc environments
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// SPDX-License-Identifier: Apache-2.0

//! Adjacency matrix graphs
//!
//! This module provides adjacency matrix graph structures that
//! implement the [`Graph`] trait.
//!
//! [`Graph`]: crate::graph::Graph

pub mod bit_map_matrix;
pub mod bit_matrix;
pub mod map_matrix;
pub mod simple_matrix;