Click or drag to resize

MaximumBipartiteMatchingAlgorithmTVertex, TEdge Constructor

Namespace:  QuickGraph.Algorithms
Assembly:  RebornBuddy (in RebornBuddy.exe) Version: 3.3.1; net-4.5.win32; release
Syntax
C#
public MaximumBipartiteMatchingAlgorithm(
	IMutableVertexAndEdgeListGraph<TVertex, TEdge> visitedGraph,
	IEnumerable<TVertex> vertexSetA,
	IEnumerable<TVertex> vertexSetB,
	VertexFactory<TVertex> vertexFactory,
	EdgeFactory<TVertex, TEdge> edgeFactory
)

Parameters

visitedGraph
Type: QuickGraphIMutableVertexAndEdgeListGraphTVertex, TEdge
vertexSetA
Type: System.Collections.GenericIEnumerableTVertex
vertexSetB
Type: System.Collections.GenericIEnumerableTVertex
vertexFactory
Type: QuickGraphVertexFactoryTVertex
edgeFactory
Type: QuickGraphEdgeFactoryTVertex, TEdge
See Also