Show / Hide Table of Contents

    Class MColorer<T, C>

    An m-coloring algorithm implementation.

    Inheritance
    Object
    MColorer<T, C>
    Inherited Members
    Object.ToString()
    Object.Equals(Object)
    Object.Equals(Object, Object)
    Object.ReferenceEquals(Object, Object)
    Object.GetHashCode()
    Object.GetType()
    Object.MemberwiseClone()
    Namespace: Advanced.Algorithms.Graph
    Assembly: Advanced.Algorithms.dll
    Syntax
    public class MColorer<T, C>
    Type Parameters
    Name Description
    T
    C

    Methods

    Color(Graph<T>, C[])

    Returns true if all vertices can be colored using the given colors in such a way so that no neighbours have same color.

    Declaration
    public MColorResult<T, C> Color(Graph<T> graph, C[] colors)
    Parameters
    Type Name Description
    Graph<T> graph
    C[] colors
    Returns
    Type Description
    MColorResult<T, C>
    Back to top Generated by DocFX