fera_graph/graphs/adaptors/mod.rs
1// This Source Code Form is subject to the terms of the Mozilla Public
2// License, v. 2.0. If a copy of the MPL was not distributed with this
3// file, You can obtain one at http://mozilla.org/MPL/2.0/.
4
5//! Create adapted graphs without modifying the wrapped graph.
6
7mod spanning_subgraph;
8mod subgraph;
9
10pub use self::spanning_subgraph::SpanningSubgraph;
11pub use self::subgraph::{Subgraph, WithSubgraph};
12
13// TODO: add Reversed
14// TODO: add Filtered