-- Initial hungarian.cabal generated by cabal init. For further -- documentation, see http://haskell.org/cabal/users-guide/ name: Hungarian-Munkres version: 0.1.4 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. This implementation is efficient. Benchmarks versus pure haskell implementation are included (run "cabal bench"). license: GPL-3 license-file: LICENSE author: Kai Zhang maintainer: Kai Zhang copyright: (c) 2014 Kai Zhang category: Algorithms build-type: Simple extra-source-files: include/hungarian.h 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 include-dirs: include includes: hungarian.h default-language: Haskell2010 benchmark bench type: exitcode-stdio-1.0 hs-source-dirs: benchmarks main-is: bench.hs default-language: Haskell2010 build-depends: base >=4.7 && <4.8 , array , Hungarian-Munkres , Munkres , random , criterion 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