Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
108 changes: 76 additions & 32 deletions ClionImplementation/.idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ClionImplementation/Dijkstras.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ std::vector<Property> dijkstras(double startLat, double startLon, double targetP
finalPath.push_back(minNode.property);

//Create Adjacency List with the int/id corresponding to the from id and the other pair having the to id and the Node
std::map<int, std::vector<std::pair<int, double>>> adjacencyList;
std::map<int, std::vector<std::pair<int, double> > > adjacencyList;
for(int i = 0; i < allNodes.size(); i++) {
for(int j = 0; j < allNodes.size(); j++) {
std::pair<int, double> pairs;
Expand Down
Loading