packages feed

Hungarian-Munkres-0.1.3: Hungarian-Munkres.cabal

-- Initial hungarian.cabal generated by cabal init.  For further 
-- documentation, see http://haskell.org/cabal/users-guide/

name:                Hungarian-Munkres
version:             0.1.3
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 
                     <http://en.wikipedia.org/wiki/Hungarian_algorithm>, and runs 
                     in O(n^3) time.
license:             GPL-3
license-file:        LICENSE
author:              Kai Zhang <kai@kzhang.org>
maintainer:          Kai Zhang <kai@kzhang.org>
copyright:           (c) 2014 Kai Zhang
category:            Algorithm
build-type:          Simple
extra-source-files:  cbits/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

  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