-- Initial hungarian.cabal generated by cabal init. For further -- documentation, see http://haskell.org/cabal/users-guide/ name: Hungarian-Munkres version: 0.1.2 synopsis: A Linear Sum Assignment Problem (LSAP) solver description: This library provide a Haskell binding to the libhungarian, a solver for Linear Sum Assignment Problem (LSAP) implemented in C language. It uses Hungarian algorithm , and runs in O(n^3) time. license: GPL-3 license-file: LICENSE author: Kai Zhang maintainer: Kai Zhang copyright: (c) 2014 Kai Zhang category: Algorithm build-type: Simple -- extra-source-files: cabal-version: >=1.10 library exposed-modules: Algorithms.Hungarian -- other-modules: -- other-extensions: build-depends: base >=4.7 && <4.8 hs-source-dirs: src c-sources: cbits/hungarian.c , cbits/hungarian.h default-language: Haskell2010 test-suite tests type: exitcode-stdio-1.0 hs-source-dirs: tests main-is: tests.hs default-language: Haskell2010 build-depends: base >=4.7 && <4.8 , array , Hungarian-Munkres , Munkres , tasty , tasty-quickcheck , random source-repository head type: git location: https://github.com/kaizhang/hungarian-munkres.git