Header menu logo B2R2

IGraph Module

Module for IGraph<'V, 'E> type to provide utility functions.

Functions and values

Function or value Description

subGraph inGraph outGraph vs

Full Usage: subGraph inGraph outGraph vs

Parameters:
Returns: IGraph<'V, 'E>

Compute a subgraph of the given graph (inGraph) using only the vertices in the given set (vs). The resulting graph will have the same structure as the original graph, but only the vertices in the set and the edges between them will be included. This function assumes that the (outGraph) is an empty graph. Otherwise, the behavior is undefined.

inGraph : IGraph<'V, 'E>
outGraph : IGraph<'V, 'E>
vs : HashSet<IVertex<'V>>
Returns: IGraph<'V, 'E>

Type something to start searching.