Skip to content

nanaya-tachibana/hungarian-python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

hungarian-python

Python Implementation of Hungarian Algorithm

Requirement

  • numpy
  • numba

Usage

from hungarian import Hungarian

N = 10  # problem size
cost_matrix = np.random.random((N, N))
h = Hungarian(N)
assignment, total_cost = h.execute(cost_matrix)

About

Python Implementation of Hungarian Algorithm

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages