https://github.com/mattkrick/juliahungarian
Hungarian algorithm (Kuhn-Munkres) implemented in Julia
https://github.com/mattkrick/juliahungarian
Last synced: 3 months ago
JSON representation
Hungarian algorithm (Kuhn-Munkres) implemented in Julia
- Host: GitHub
- URL: https://github.com/mattkrick/juliahungarian
- Owner: mattkrick
- Created: 2015-06-19T05:10:22.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-06-19T05:17:37.000Z (almost 10 years ago)
- Last Synced: 2025-01-13T16:48:22.510Z (4 months ago)
- Language: Julia
- Size: 129 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# JuliaHungarian
Hungarian algorithm (Kuhn-Munkres) implemented in JuliaThis is the first useful thing I've done in Julia. Please feel free to submit issues/PR, especially regarding performance or Julia-specific stuff as I'm new to language.
## Use
`using JuliaHungarian`Then
`hungarian([1 2 3; 2 4 6; 3 6 9])`;