-
Notifications
You must be signed in to change notification settings - Fork 0
/
AlanDeniseEricLauren.cabal
41 lines (38 loc) · 1.25 KB
/
AlanDeniseEricLauren.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
name: AlanDeniseEricLauren
version: 0.1.0.1
cabal-version: >=1.10
build-type: Simple
license: BSD3
license-file: LICENSE
copyright: 2016 Echo Nolan
maintainer: [email protected]
homepage: http://github.com/enolan/AlanDeniseEricLauren
synopsis: Find the minimal subset/submap satisfying some property.
description:
Find the minimal subset/submap satisfying some arbitrary property.
category: Algorithms
author: Echo Nolan
extra-doc-files: README.md
library
exposed-modules: ADEL
build-depends: base, containers, MonadRandom, mtl, random, random-shuffle,
vector
default-language: Haskell2010
default-extensions: FlexibleContexts, RankNTypes
hs-source-dirs: src
ghc-options: -fdefer-typed-holes -Wall -O2
test-suite spec
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: test
build-depends: AlanDeniseEricLauren, base, containers, hspec, hspec-core,
QuickCheck, random, transformers, MonadRandom
default-language: Haskell2010
default-extensions: ScopedTypeVariables
benchmark bench
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: bench
build-depends: AlanDeniseEricLauren, base, containers, criterion
default-language: Haskell2010
ghc-options: -O2