Show / Hide Table of Contents

    Class BiPartiteMatching<T>

    Compute Max BiParitite Edges using Ford-Fukerson algorithm.

    Inheritance
    Object
    BiPartiteMatching<T>
    Namespace: Advanced.Algorithms.Graph
    Assembly: Advanced.Algorithms.dll
    Syntax
    public class BiPartiteMatching<T> : object
    Type Parameters
    Name Description
    T

    Constructors

    BiPartiteMatching(IBiPartiteMatchOperators<T>)

    Declaration
    public BiPartiteMatching(IBiPartiteMatchOperators<T> operator)
    Parameters
    Type Name Description
    IBiPartiteMatchOperators<T> operator

    Methods

    GetMaxBiPartiteMatching(IGraph<T>)

    Returns a list of Max BiPartite Match Edges.

    Declaration
    public List<MatchEdge<T>> GetMaxBiPartiteMatching(IGraph<T> graph)
    Parameters
    Type Name Description
    IGraph<T> graph
    Returns
    Type Description
    List<MatchEdge<T>>
    Back to top Generated by DocFX