2019-05-30 12:40:32 +02:00
|
|
|
cabal-version: 2.2
|
2019-10-17 17:25:25 +02:00
|
|
|
name: ga
|
2019-05-30 12:40:32 +02:00
|
|
|
version: 0.1.0.0
|
|
|
|
-- synopsis:
|
|
|
|
-- description:
|
|
|
|
license: GPL-3.0-only
|
|
|
|
license-file: LICENSE
|
|
|
|
author: David Pätzel
|
|
|
|
maintainer: david.paetzel@informatik.uni-augsburg.de
|
|
|
|
-- copyright:
|
|
|
|
-- category:
|
|
|
|
build-type: Simple
|
|
|
|
-- extra-source-files: CHANGELOG.md
|
|
|
|
|
|
|
|
|
|
|
|
library
|
|
|
|
build-depends: base ^>=4.12.0.0
|
|
|
|
, MonadRandom
|
|
|
|
, monad-loops
|
|
|
|
, random
|
|
|
|
, random-fu
|
|
|
|
, random-shuffle
|
2019-10-18 09:57:43 +02:00
|
|
|
, pipes
|
2019-05-30 12:40:32 +02:00
|
|
|
, protolude
|
|
|
|
, QuickCheck
|
|
|
|
, quickcheck-instances
|
|
|
|
, text
|
|
|
|
default-language: Haskell2010
|
|
|
|
hs-source-dirs: src
|
|
|
|
exposed-modules: GA
|
|
|
|
, Seminar
|
|
|
|
, Pretty
|
|
|
|
, SS19
|
2019-10-18 09:10:11 +02:00
|
|
|
, WS19
|
2019-05-30 12:40:32 +02:00
|
|
|
|
|
|
|
|
2019-10-17 17:25:58 +02:00
|
|
|
executable ga
|
|
|
|
build-depends: base ^>=4.12.0.0
|
|
|
|
, MonadRandom
|
|
|
|
, monad-loops
|
|
|
|
, random
|
|
|
|
, random-fu
|
|
|
|
, random-shuffle
|
2019-10-18 09:57:43 +02:00
|
|
|
, pipes
|
2019-10-17 17:25:58 +02:00
|
|
|
, protolude
|
|
|
|
, QuickCheck
|
|
|
|
, quickcheck-instances
|
|
|
|
, text
|
|
|
|
default-language: Haskell2010
|
|
|
|
hs-source-dirs: src
|
|
|
|
main-is: Main.hs
|
|
|
|
other-modules: GA
|
|
|
|
, Seminar
|
|
|
|
, Pretty
|
|
|
|
, SS19
|
2019-10-18 09:10:11 +02:00
|
|
|
, WS19
|