15-887 Project
Implemented Dijkstra and A* (with Dijkstra heuristic).
Recommand Anaconda3 for dependencies, pyopengl should be installed separately.
- Python 3.5
- pyopengl
- PyQt4
by using
conda install pyopenglThe installation of the PyQt4 can be problematic, try this:
conda install -c anaconda pyqt=4.11.4python visualizer.py- src/prj.py: visulization and run main functions
- Load a Map
import numpy as np
mapdata = np.loadtxt('../data/map_random_algo.txt')-
Map Files for algortihms:
map_manhattan.txt
map_random.txt
