-
Notifications
You must be signed in to change notification settings - Fork 0
/
SMT.cabal
67 lines (65 loc) · 2.51 KB
/
SMT.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
61
62
63
64
65
66
67
cabal-version: 2.4
name: SMT
version: 0.1.0.0
author: Niklas Gruhn
maintainer: [email protected]
extra-source-files: CHANGELOG.md
library
exposed-modules: Expression
, Assignment
, CNF
, SAT.DPLL
, SAT.CDCL
, Theory
, Theory.Propositions
, Theory.BitVectors
, Theory.UninterpretedFunctions
, Theory.UninterpretedFunctions.EDSL
, Theory.LinearArithmatic.Constraint
, Theory.LinearArithmatic.FourierMotzkin
, Theory.LinearArithmatic.Simplex
, Theory.LinearArithmatic.BranchAndBound
, Theory.NonLinearRealArithmatic.Expr
, Theory.NonLinearRealArithmatic.Interval
, Theory.NonLinearRealArithmatic.IntervalUnion
, Theory.NonLinearRealArithmatic.Polynomial
, Theory.NonLinearRealArithmatic.UnivariatePolynomial
, Theory.NonLinearRealArithmatic.Constraint
, Theory.NonLinearRealArithmatic.BoundedFloating
, Theory.NonLinearRealArithmatic.IntervalConstraintPropagation
, Theory.NonLinearRealArithmatic.Subtropical
, Theory.NonLinearRealArithmatic.VirtualSubstitution
, Theory.NonLinearRealArithmatic.CAD
other-modules: Utils
build-depends: base
, megaparsec
, containers
, parser-combinators
, mtl
, extra
, vector
, search-algorithms
hs-source-dirs: src
default-language: Haskell2010
default-extensions:
ScopedTypeVariables
, LambdaCase
, StrictData
, TupleSections
, MultiParamTypeClasses
, FunctionalDependencies
test-suite test
type: exitcode-stdio-1.0
main-is: Test.hs
other-modules: TestUninterpretedFunctions
, TestNonLinearRealArithmatic
, TestLinearArithmatic
, TestSAT
build-depends: base
, SMT
, hedgehog
, containers
hs-source-dirs: test
default-language: Haskell2010
default-extensions: StrictData
, ScopedTypeVariables