Method ToUndirected
ToUndirected(Graph<T>)
Converts a directed graph into an undirected graph by mirroring edges.
Declaration
public static Graph<T> ToUndirected(Graph<T> directedGraph)
Parameters
| Type | Name | Description |
|---|---|---|
| Graph<T> | directedGraph | The directed graph to convert. |
Returns
| Type | Description |
|---|---|
| Graph<T> | An undirected graph. |