Click or drag to resize
DirectedGraph<TVertex, TEdge> Constructor (Func<TVertex, TVertex, TEdge>)

Namespace:  SD.Tools.Algorithmia.Graphs
Assembly:  SD.Tools.Algorithmia (in SD.Tools.Algorithmia.dll) Version: 1.3.0.0 (1.3.17.0314)
Syntax
public DirectedGraph(
	Func<TVertex, TVertex, TEdge> edgeProducerFunc
)

Parameters

edgeProducerFunc
Type: System.Func<TVertex, TVertex, TEdge>
The edge producer func which produces edges for this directed graph. Used in some algorithms which have to produce edges.
See Also