hasnainroopawalla / ant-colony-optimization

A Python package to find the shortest path in a graph using Ant Colony Optimization
https://medium.com/@hasnain.roopawalla/ant-colony-optimization-1bbc346c2da5
MIT License
14 stars 2 forks source link

Dijkstra is missing when pip installing #11

Closed Jaykingamez closed 3 months ago

Jaykingamez commented 3 months ago

In the example.py, it links to a code which can't be used. For example, the Dijkstra

hasnainroopawalla commented 3 months ago

Hey @Jaykingamez, the example.py linked in the README was pointing to an older commit of the file. I've updated the link in PR #12.

Here is the link to the correct example.py (from latest master) which uses Dijkstra from networkx.

Thanks for reporting this bug!