-
Notifications
You must be signed in to change notification settings - Fork 8
/
presburger.cabal
37 lines (31 loc) · 1008 Bytes
/
presburger.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
Name: presburger
Version: 1.3.1
License: MIT
License-file: LICENSE
Author: Iavor S. Diatchki
Homepage: http://github.com/yav/presburger
Maintainer: [email protected]
Category: Algorithms
Synopsis: A decision procedure for quantifier-free linear arithmetic.
Description: The decision procedure is based on the algorithm used in
CVC4, which is itself based on the Omega test.
Build-type: Simple
Cabal-version: >= 1.10
library
Default-Language: Haskell2010
Build-Depends: base < 10, containers, pretty
hs-source-dirs: src
Exposed-modules:
Data.Integer.SAT
GHC-options: -O2 -Wall
Other-Extensions: Trustworthy
if !impl(ghc >=8.0)
Build-Depends: fail ==4.9.0.0
source-repository head
type: git
location: git://github.com/yav/presburger.git
Test-Suite pressburger-qc-tests
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: qc.hs
build-depends: base, presburger == 1.3.1, QuickCheck