public interface IPFKnownMap<NODE> extends IPFMap<NODE>
You should first read IPFMap javadoc, then by looking at new interface methods, you can see that this interface is suitable for algorithms which
need to know the whole graph in advance (such as Floyd-Warshall).
So you have to provide implementation for methods that returns all the nodes which are present in the map (getNodes()).
| Modifier and Type | Method and Description |
|---|---|
Collection<NODE> |
getNodes()
This must return the list of ALL NODES that are present in your map (== environment).
|
getArcCost, getNeighbors, getNodeCostCollection<NODE> getNodes()
Copyright © 2019 AMIS research group, Faculty of Mathematics and Physics, Charles University in Prague, Czech Republic. All rights reserved.