Uses of Class
pathfinder.JPFMap

Packages that use JPFMap
pathfinder   
 

Uses of JPFMap in pathfinder
 

Fields in pathfinder declared as JPFMap
protected  JPFMap JMapPanel.m_map
           
 

Methods in pathfinder with parameters of type JPFMap
abstract  void JPathFinder.performBFS(int start, int stop, JPFMap map)
          implements the breadth first search (performBFS) path search - searches a road from given start to target city
abstract  void JPathFinder.performDFS(int start, int stop, JPFMap map)
          implements the depth first search (performDFS) path search - searches a road from given start to target city
abstract  void JPathFinder.searchForShortestPath(int start, int stop, JPFMap map)
          implements the A* path search - searches shortest road from given start to target city
abstract  void JPathFinder.searchForShortestTime(int start, int stop, JPFMap map)
          implements the A* path search - searches fastest road from given start to target city
 

Constructors in pathfinder with parameters of type JPFMap
JMapPanel(int width, int height, JPFMap m)