-
Notifications
You must be signed in to change notification settings - Fork 0
/
simulated-annealing.cabal
56 lines (48 loc) · 1.42 KB
/
simulated-annealing.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
cabal-version: 2.4
name: simulated-annealing
version: 1.0.0
synopsis: An implementation of the simulated annealing algorithm
author: Mathias Jean Johansen
maintainer: [email protected]
homepage: https://github.com/majjoha/simulated-annealing
license: ISC
license-file: LICENSE
extra-source-files: README.md
library
exposed-modules:
SimulatedAnnealing
SimulatedAnnealing.Algorithm
SimulatedAnnealing.City
SimulatedAnnealing.Tour
hs-source-dirs: src
build-depends:
, base ^>=4.14.3.0
, random >=1.2.1
, sdl2
, vector >=0.12.3.1
default-language: Haskell2010
executable simulated-annealing
main-is: Main.hs
build-depends:
, base ^>=4.14.3.0
, sdl2
, simulated-annealing
hs-source-dirs: app
default-language: Haskell2010
test-suite simulated-annealing-test
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
SimulatedAnnealing.AlgorithmSpec
SimulatedAnnealing.CitySpec
SimulatedAnnealing.TourSpec
hs-source-dirs: test
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall
build-depends:
, base >=4.7 && <5
, hspec
, sdl2
, simulated-annealing
, vector >=0.12.3.1
build-tool-depends: hspec-discover:hspec-discover ==2.*
default-language: Haskell2010