Kuhn-Munkres (aka Hungarian) algorithm for solving the Assignment Problem in O(n^3), written in Rust.
417ccc2c9f
N=100 takes too long (~350 seconds) when running with criterion.rs and I don't know how to limit the number of samples taken (100). |
||
---|---|---|
benches | ||
src | ||
.gitignore | ||
.travis.yml | ||
Cargo.toml | ||
LICENSE | ||
README.md |
munkres-rs
Kuhn-Munkres (aka Hungarian) algorithm for solving the Assignment Problem written in Rust. Time complexity is O(n^3).
This is a modified port from https://github.com/bmc/munkres.
TODO
- Implement SIMD f32x4 weight matrix