-
Notifications
You must be signed in to change notification settings - Fork 1
/
haga.cabal
101 lines (98 loc) · 3.78 KB
/
haga.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
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): 2020 David Pätzel
category: Optimization
build-type: Simple
library
build-depends: base ^>=4.14.0.0
, cassava
, extra
, MonadRandom
, monad-loops
, optparse-applicative
, pipes
, protolude
, QuickCheck
, quickcheck-instances
, random
-- 0.3.0.0 introduces at least one truly breaking change.
, random-fu <0.3.0.0
, random-shuffle
, text
, wl-pprint-text
default-language: Haskell2010
ghc-options: -Wall -Wno-name-shadowing -Wno-orphans -threaded
hs-source-dirs: src
exposed-modules: GA
, Seminar
, Pretty
, Szenario191
, Szenario202
, Analysis
executable haga
build-depends: base ^>=4.14.0.0
, cassava
, extra
, MonadRandom
, monad-loops
, optparse-applicative
, pipes
, protolude
, QuickCheck
, quickcheck-instances
, random
-- 0.3.0.0 introduces at least one truly breaking change.
, random-fu <0.3.0.0
, random-shuffle
, text
, wl-pprint-text
default-language: Haskell2010
ghc-options: -Wall -Wno-name-shadowing -Wno-orphans
hs-source-dirs: src
main-is: Main.hs
other-modules: GA
, Seminar
, Pretty
, Szenario191
, Szenario202
executable haga-test
build-depends: base ^>=4.14.0.0
, cassava
, Cabal
, extra
, MonadRandom
, monad-loops
, optparse-applicative
, pipes
, protolude
, QuickCheck
, quickcheck-instances
, random
-- 0.3.0.0 introduces at least one truly breaking change.
, random-fu <0.3.0.0
, random-shuffle
, text
, wl-pprint-text
default-language: Haskell2010
ghc-options: -Wall -Wno-name-shadowing -Wno-orphans
hs-source-dirs: src
main-is: Test.hs
other-modules: GA
, Seminar
, Pretty
, Szenario191