It is a python platform for visualizing all steps of a given graph algorithm operations. It's intended for graph algorithm learners.
The goal of this project is to provide the user an ability to configure (timing, layout, and styles of the graph etc) the visualization experience for a given graph and chosen graph algorithm.
The current version of the project uses python3. Main development is done on Linux OS based on Debian. So, install following python3 libraries in Linux-
- Graph-tool -- This is the main library of for this project. See Installation instructions.
- Matplotlib -- See installation instructions.
The default run of the code shows the steps of Breadth-First Traversal of a sample graph.
python3.5 visGraphAlgo.py
- I have used Inconsolata-Regular fonts (source https://github.com/google/fonts/tree/master/ofl/inconsolata). I have included the fonts files in the project.
- Building blocks folder contains small programs. I learned individual component of the project using these program modules. To add a new feature, I usually test my code with these small modules and then I integrate the new code into the main code.