An open API service indexing awesome lists of open source software.

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.

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
```