All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cdc.graphs.TraversalMethod Maven / Gradle / Ivy

The newest version!
package cdc.graphs;

/**
 * Enumeration of possible methods (DEPTH_FIRST or BREADTH_FIRST) used to
 * traverse a graph.
 *
 * @author Damien Carbonne
 */
public enum TraversalMethod {
    /**
     * Use a depth first traversal algorithm.
     */
    DEPTH_FIRST,

    /**
     * Use a breadth first traversal algorithm.
     */
    BREADTH_FIRST
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy