meaningless comment
[ephemerata.git] / KezvhLib / src-lib / net / kezvh / algorithms / graph / SingleSourceShortestPath.java
blob3647f562b65a60d2609c0c4f20791fecada004e9
1 package net.kezvh.algorithms.graph;
3 /**
4 * @author mjacob
5 * @param <T> node type
6 */
7 public interface SingleSourceShortestPath<T> {
8 /**
9 * @param dest
10 * @return shortest path between the two points
12 Path<T> getShortestPath(T dest);
14 /**
15 * @param dest
16 * @return true if the source is connected to the destination;
18 boolean connected(T dest);
20 /**
21 * @return the source for this sssp instance
23 T getSource();