hgalib-0.2: _darcs/tentative_pristine
addfile ./LICENSE
hunk ./LICENSE 1
+Copyleft 2008. All rights reversed.
addfile ./README
hunk ./README 1
+See examples/. It should get you started.
+The source code is haddock-ready. Run:
+
+runhaskell Setup.hs configure
+runhaskell Setup.hs haddock
+
+Note you need haddock version 2.
+
+Please send comments, patches, etc to:
+
+ellisk@catlin.edu
+
+Thank you so much for using hgalib.
addfile ./Setup.lhs
hunk ./Setup.lhs 1
+#!/usr/bin/env runhaskell
+> import Distribution.Simple
+> main = defaultMain
addfile ./hgalib.cabal
hunk ./hgalib.cabal 1
+name: hgalib
+version: 0.2
+synopsis: Haskell Genetic Algorithm Library
+description: Haskell Genetic Algorithm Library
+category: AI
+license: PublicDomain
+license-file: LICENSE
+author: Kevin Ellis
+maintainer: Kevin Ellis <ellisk@catlin.edu>
+build-type: Simple
+Cabal-Version: >= 1.2
+Library
+ exposed-modules: GA,
+ Population.List,
+ Population.Array,
+ Chromosome.Bits,
+ Chromosome.ANN,
+ Chromosome.GP
+ ghc-options: -O2
+ build-depends: base >= 3, array, mtl, haskell98