-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathWangsAlgorithm.cabal
More file actions
47 lines (44 loc) · 1.45 KB
/
WangsAlgorithm.cabal
File metadata and controls
47 lines (44 loc) · 1.45 KB
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
name: WangsAlgorithm
version: 0.1.0.0
synopsis: A Propositional Theorem Prover using Wang's Algorithm
homepage: http://github.com/joom/WangsAlgorithm
license: MIT
license-file: LICENSE
author: Joomy Korkut
maintainer: cumhurkorkut@gmail.com
category: Math
build-type: Simple
cabal-version: >=1.10
executable wang
default-extensions: OverloadedStrings
main-is: Main.hs
build-depends: base >=4.7
, parsec >= 3
, optparse-applicative
, HaTeX
, WangsAlgorithm
hs-source-dirs: execs
default-language: Haskell2010
library
default-extensions: OverloadedStrings
exposed-modules: WangsAlgorithm.Proposition
, WangsAlgorithm.Prover
, WangsAlgorithm.Parser
, WangsAlgorithm.LaTeX
build-depends: base
, parsec >= 3
, HaTeX >= 3
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall -threaded
test-suite tests
default-extensions: OverloadedStrings
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: tests.hs
build-depends: base
, WangsAlgorithm
, HUnit >= 1.2.5.0
, QuickCheck >= 2
Default-Language: Haskell2010
ghc-options: -Wall -threaded