edu.upc.dama.dex.algorithms
Interface Algorithm

All Known Implementing Classes:
Connectivity, ShortestPath, SinglePairShortestPath, SinglePairShortestPathBFS, SinglePairShortestPathDijkstra, StrongConnectivity, StrongConnectivityGabow, Traversal, TraversalBFS, TraversalDFS, WeakConnectivity, WeakConnectivityDFS

public interface Algorithm

Common interface for all the algorithm implementations.

Author:
Sparsity Technologies

Field Summary
static short NAVIGATION_BACKWARD
          Navigation kind which allows to backward traverse edges.
static short NAVIGATION_FORWARD
          Navigation kind which allows to forward traverse edges.
static short NAVIGATION_UNDIRECTED
          Navigation kind which allows to traverse edges in both direcctions (forward and backward).
 

Field Detail

NAVIGATION_FORWARD

static final short NAVIGATION_FORWARD
Navigation kind which allows to forward traverse edges.

See Also:
Constant Field Values

NAVIGATION_BACKWARD

static final short NAVIGATION_BACKWARD
Navigation kind which allows to backward traverse edges.

See Also:
Constant Field Values

NAVIGATION_UNDIRECTED

static final short NAVIGATION_UNDIRECTED
Navigation kind which allows to traverse edges in both direcctions (forward and backward).

See Also:
Constant Field Values