Files
2025-10-28 11:50:14 -04:00

36 lines
1.4 KiB
Tcl

# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
PortSystem 1.0
PortGroup python 1.0
name py-munkres
version 1.1.4
revision 0
categories-append devel
license Apache-2
platforms {darwin any}
supported_archs noarch
description Munkres algorithm for Python
long_description The Munkres module provides an O(n^3) implementation of the Munkres algorithm \
(also called the Hungarian algorithm or the Kuhn-Munkres algorithm). \
The algorithm models an assignment problem as an NxM cost matrix, where each element \
represents the cost of assigning the ith worker to the jth job, and it figures out \
the least-cost solution, choosing a single item from each row and column in the matrix, \
such that no row and no column are used more than once.
homepage https://software.clapper.org/munkres/
maintainers nomaintainer
checksums rmd160 d91c3ef91bb5e023b0cdd4716cbf9fe75821b2f2 \
sha256 fc44bf3c3979dada4b6b633ddeeb8ffbe8388ee9409e4d4e8310c2da1792db03 \
size 14047
python.versions 310 311
if {${name} ne ${subport}} {
test.run yes
}