Kuhn-Munkres (aka Hungarian) algorithm for solving the Assignment Problem in O(n^3), written in Rust.
d33071e044
Before: test bench_solve100 ... bench: 64,727 ns/iter (+/- 691) test bench_solve1000 ... bench: 7,160,735 ns/iter (+/- 315,280) After: test bench_solve100 ... bench: 59,998 ns/iter (+/- 4,502) test bench_solve1000 ... bench: 6,761,411 ns/iter (+/- 379,337) |
||
---|---|---|
src | ||
.gitignore | ||
.travis.yml | ||
Cargo.toml | ||
LICENSE | ||
README.md |
munkres-rs
Kuhn-Munkres (aka Hungarian) algorithm for solving the Assignment Problem written in Rust.
This is a modified port from https://github.com/bmc/munkres.