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

cdc.graphs.TraversalOrder Maven / Gradle / Ivy

The newest version!
package cdc.graphs;

/**
 * Enumeration possible orders (PRE_ORDER or POST_ORDER) used to
 * traverse a graph.
 *
 * @author Damien Carbonne
 */
public enum TraversalOrder {
    PRE_ORDER,
    POST_ORDER
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy