-
Notifications
You must be signed in to change notification settings - Fork 0
/
discrete-opt.cabal
60 lines (57 loc) · 1.88 KB
/
discrete-opt.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
-- Initial discrete-opt.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: discrete-opt
version: 0.1.0.1
synopsis: Discrete optimization.
description: Currently contains Ant Colony Optimization and Simulated Annealing.
license: BSD3
license-file: LICENSE
author: Tomáš Musil
maintainer: [email protected]
-- copyright:
category: AI
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
library
exposed-modules: SA
, ACO
, BB
, Problems.TSP
, Problems.TSP.NN
, Problems.TSP.TwoOpt
, Problems.VRP
-- other-modules:
other-extensions: TemplateHaskell
build-depends: base >=4.6 && <5
, array >=0.5
, containers >=0.5
, random
, MonadRandom
, lens
, mtl
, split
, glpk-hs
hs-source-dirs: src
default-language: Haskell2010
executable discrete-opt
main-is: Main.hs
other-modules: Main.TSP
, Main.VRP
, Main.Opts
, Main.Plot
-- other-extensions:
build-depends: base >=4.6 && <5
, discrete-opt
, array >=0.5
, containers >=0.5
, random
, MonadRandom
, lens
, mtl
, Chart
, Chart-diagrams
, glpk-hs
hs-source-dirs: src-main
default-language: Haskell2010
ghc-options: -O3