SkillAgentSearch skills...

Hungarian

Hungarian / Munkres' algorithm for the linear assignment problem, in Python

Install / Use

/learn @hrldcpr/Hungarian
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

This is an outdated package

Consider using scipy.optimize.linear_sum_assignment instead.

This module is just a simple wrapper for a C++ implementation of Knuth's Hungarian algorithm, a.k.a. Munkres' algorithm, for the linear assignment problem.

For a faster, but less tolerant, LAP algorithm see http://github.com/hrldcpr/pyLAPJV

Note that this module depends on the numpy module. You must install numpy before you can compile this module. Numpy can be downloaded from http://numpy.scipy.org

If you have any problems with this module, you should contact me, not Mr. Battre.

To build this module run:

> python setup.py build

Then you can either put the file build/lib-<YOUR-PLATFORM>/hungarian.so in the same directory as the code that will be using it, or you can install it so that all of your python programs can see it:

> python setup.py install

For the module's documentation, type at a Python prompt:

>>> help('hungarian')

Additional Information:

This wrapper for the algorithm uses double precision (i.e. 64-bit) floating point arithmetic. To change it to single precision, integer, or anything else, simply change the corresponding types in asp.h

Related Skills

View on GitHub
GitHub Stars72
CategoryDevelopment
Updated9mo ago
Forks21

Languages

C++

Security Score

87/100

Audited on Jul 7, 2025

No findings