86 lines
3.0 KiB
Plaintext
86 lines
3.0 KiB
Plaintext
cabal-version: 2.2
|
|
name: haga
|
|
version: 0.1.0.0
|
|
synopsis: Simplistic genetic algorithms library
|
|
description: Haga is a simplistic library for implementing genetic
|
|
algorithms in Haskell. While it was originally created to
|
|
randomly assign topics to students in seminars while
|
|
respecting their priorities, since then, it has become
|
|
slightly more general with the outlook of one day being a
|
|
fully fledged GA library usable for many different
|
|
problems. Haga is also used as a test bed for fun ideas
|
|
such as representing improvements in the population's
|
|
fitness using MIDI sound.
|
|
license: GPL-3.0-only
|
|
license-file: LICENSE
|
|
author: David Pätzel
|
|
maintainer: david.paetzel@posteo.de
|
|
copyright: Copyright (c): 2019 David Pätzel
|
|
category: Optimization
|
|
build-type: Simple
|
|
|
|
library
|
|
build-depends: base ^>=4.13.0.0
|
|
, extra
|
|
, MonadRandom
|
|
, monad-loops
|
|
, optparse-applicative
|
|
, pipes
|
|
, protolude
|
|
, QuickCheck
|
|
, quickcheck-instances
|
|
, random
|
|
, random-fu
|
|
, random-shuffle
|
|
, text
|
|
default-language: Haskell2010
|
|
hs-source-dirs: src
|
|
exposed-modules: GA
|
|
, Seminar
|
|
, Pretty
|
|
, Szenario191
|
|
|
|
executable haga
|
|
build-depends: base ^>=4.13.0.0
|
|
, extra
|
|
, MonadRandom
|
|
, monad-loops
|
|
, optparse-applicative
|
|
, pipes
|
|
, protolude
|
|
, QuickCheck
|
|
, quickcheck-instances
|
|
, random
|
|
, random-fu
|
|
, random-shuffle
|
|
, text
|
|
default-language: Haskell2010
|
|
hs-source-dirs: src
|
|
main-is: Main.hs
|
|
other-modules: GA
|
|
, Seminar
|
|
, Pretty
|
|
, Szenario191
|
|
|
|
executable haga-tests
|
|
build-depends: base ^>=4.13.0.0
|
|
, Cabal
|
|
, extra
|
|
, MonadRandom
|
|
, monad-loops
|
|
, optparse-applicative
|
|
, pipes
|
|
, protolude
|
|
, QuickCheck
|
|
, quickcheck-instances
|
|
, random
|
|
, random-fu
|
|
, random-shuffle
|
|
, text
|
|
default-language: Haskell2010
|
|
hs-source-dirs: src
|
|
main-is: Test.hs
|
|
other-modules: GA
|
|
, Seminar
|
|
, Pretty
|
|
, Szenario191 |