https://github.com/ugnelis/go-dijkstra-in-parallel
Dijkstra's shortest path in parallel.
https://github.com/ugnelis/go-dijkstra-in-parallel
dijkstra dijkstra-in-parallel dijkstra-shortest-path go parallel
Last synced: about 2 months ago
JSON representation
Dijkstra's shortest path in parallel.
- Host: GitHub
- URL: https://github.com/ugnelis/go-dijkstra-in-parallel
- Owner: ugnelis
- Created: 2015-11-15T11:11:54.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2020-09-02T06:56:58.000Z (almost 5 years ago)
- Last Synced: 2025-05-08T20:58:03.870Z (about 2 months ago)
- Topics: dijkstra, dijkstra-in-parallel, dijkstra-shortest-path, go, parallel
- Language: Go
- Homepage:
- Size: 16.6 KB
- Stars: 7
- Watchers: 1
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# go-dijkstra-in-parallel
This project was created for Concurrent Programming course of Kaunas University of Technology.
## Running Tests
In order to run tests, you need to go to *main* folder and type the following command:
```
$ go test
```If you want to run specific test function:
```
$ go test -run Test4Vertices
```Add -v flag to see the results
```
$ go test -v
```