packages feed

Cabal revisions of Hungarian-Munkres-0.1.0

Hackage metadata revisions edit the .cabal file after upload; each diff below is one revision.

revision 1
--- Initial hungarian.cabal generated by cabal init.  For further --- documentation, see http://haskell.org/cabal/users-guide/--name:                Hungarian-Munkres-version:             0.1.0-synopsis:            A linear Sum Assignment Problme (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:           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-  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+-- Initial hungarian.cabal generated by cabal init.  For further 
+-- documentation, see http://haskell.org/cabal/users-guide/
+
+name:                Hungarian-Munkres
+version:             0.1.0
+x-revision: 1
+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:           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
+  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