Module org.jgrapht.core
Package org.jgrapht.alg.interfaces
Class ManyToManyShortestPathsAlgorithm.BaseManyToManyShortestPathsImpl<V,E>
java.lang.Object
org.jgrapht.alg.interfaces.ManyToManyShortestPathsAlgorithm.BaseManyToManyShortestPathsImpl<V,E>
- Type Parameters:
V- the graph vertex typeE- the graph edge type
- All Implemented Interfaces:
ManyToManyShortestPathsAlgorithm.ManyToManyShortestPaths<V,E>
- Enclosing interface:
- ManyToManyShortestPathsAlgorithm<V,E>
public abstract static class ManyToManyShortestPathsAlgorithm.BaseManyToManyShortestPathsImpl<V,E> extends java.lang.Object implements ManyToManyShortestPathsAlgorithm.ManyToManyShortestPaths<V,E>
Base class for many-to-many shortest paths implementations.
-
Constructor Summary
Constructors Modifier Constructor Description protectedBaseManyToManyShortestPathsImpl(java.util.Set<V> sources, java.util.Set<V> targets)Constructs an instance for the givensourcesandtargets. -
Method Summary
Modifier and Type Method Description protected voidassertCorrectSourceAndTarget(V source, V target)Checks thatsourceandtargetare not null and are present in thegraph.java.util.Set<V>getSources()Returns the set of source vertices for which this many-to-many shortest paths were computed.java.util.Set<V>getTargets()Returns the set of target vertices for which this many-to-many shortest paths were computed.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.jgrapht.alg.interfaces.ManyToManyShortestPathsAlgorithm.ManyToManyShortestPaths
getPath, getWeight
-
Constructor Details
-
BaseManyToManyShortestPathsImpl
Constructs an instance for the givensourcesandtargets.- Parameters:
sources- source verticestargets- target vertices
-
-
Method Details
-
getSources
Description copied from interface:ManyToManyShortestPathsAlgorithm.ManyToManyShortestPathsReturns the set of source vertices for which this many-to-many shortest paths were computed.- Specified by:
getSourcesin interfaceManyToManyShortestPathsAlgorithm.ManyToManyShortestPaths<V,E>- Returns:
- the set of source vertices
-
getTargets
Description copied from interface:ManyToManyShortestPathsAlgorithm.ManyToManyShortestPathsReturns the set of target vertices for which this many-to-many shortest paths were computed.- Specified by:
getTargetsin interfaceManyToManyShortestPathsAlgorithm.ManyToManyShortestPaths<V,E>- Returns:
- the set of target vertices
-
assertCorrectSourceAndTarget
Checks thatsourceandtargetare not null and are present in thegraph.- Parameters:
source- a source vertextarget- a target vertex
-