2015-10-19 20:36:50 +03:00
|
|
|
# munkres-rs [![Build Status][travis-image]][travis-link]
|
|
|
|
|
2017-08-22 18:06:53 +04:00
|
|
|
[travis-image]: https://travis-ci.org/mneumann/munkres-rs.svg?branch=master
|
2015-10-19 20:36:50 +03:00
|
|
|
[travis-link]: https://travis-ci.org/mneumann/munkres-rs
|
|
|
|
|
2018-01-30 18:03:03 +04:00
|
|
|
Kuhn-Munkres (aka Hungarian) algorithm for solving the Assignment Problem
|
|
|
|
written in Rust. Time complexity is O(n^3).
|
2015-10-19 20:27:11 +03:00
|
|
|
|
|
|
|
This is a modified port from https://github.com/bmc/munkres.
|
2015-11-29 19:31:11 +03:00
|
|
|
|
|
|
|
## TODO
|
|
|
|
|
|
|
|
* Implement SIMD f32x4 weight matrix
|