DirectedGraphTVertex, TEdge Constructor (DirectedGraphTVertex, TEdge, FuncTVertex, TVertex, TEdge) | 
  
    Namespace: 
   SD.Tools.Algorithmia.Graphs
    Assembly:
   SD.Tools.Algorithmia (in SD.Tools.Algorithmia.dll) Version: 1.3.3.0 (1.3.18.0209)
Syntaxpublic DirectedGraph(
	DirectedGraph<TVertex, TEdge> graph,
	Func<TVertex, TVertex, TEdge> edgeProducerFunc
)
Public Sub New ( 
	graph As DirectedGraph(Of TVertex, TEdge),
	edgeProducerFunc As Func(Of TVertex, TVertex, TEdge)
)
Parameters
- graph
 - Type: SD.Tools.Algorithmia.GraphsDirectedGraphTVertex, TEdge
The graph. - edgeProducerFunc
 - Type: SystemFuncTVertex, TVertex, TEdge
The edge producer func which produces edges for this directed graph. Used in some algorithms which 
            have to produce edges. 
See Also