Package org.jgrapht.alg.interfaces
Interface MultiObjectiveShortestPathAlgorithm.MultiObjectiveSingleSourcePaths<V,E>
-
- Type Parameters:
V
- the graph vertex typeE
- the graph edge type
- All Known Implementing Classes:
ListMultiObjectiveSingleSourcePathsImpl
- Enclosing interface:
- MultiObjectiveShortestPathAlgorithm<V,E>
public static interface MultiObjectiveShortestPathAlgorithm.MultiObjectiveSingleSourcePaths<V,E>
A set of paths starting from a single source vertex.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Graph<V,E>
getGraph()
Returns the graph over which this set of paths is defined.java.util.List<GraphPath<V,E>>
getPaths(V sink)
Return the path from the source vertex to the sink vertex.V
getSourceVertex()
Returns the single source vertex.
-