| Crates.io | munkres |
| lib.rs | munkres |
| version | 0.5.2 |
| created_at | 2015-10-19 23:25:55.641738+00 |
| updated_at | 2021-01-07 15:02:33.078412+00 |
| description | Kuhn-Munkres (aka Hungarian) algorithm for solving the Assignment Problem in O(n^3) |
| homepage | |
| repository | https://github.com/mneumann/munkres-rs |
| max_upload_size | |
| id | 3268 |
| size | 38,919 |
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.