-
Notifications
You must be signed in to change notification settings - Fork 1
/
hasmtlib.cabal
91 lines (86 loc) · 4.5 KB
/
hasmtlib.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
cabal-version: 3.0
name: hasmtlib
version: 2.7.1
synopsis: A monad for interfacing with external SMT solvers
description: Hasmtlib is a library for generating SMTLib2-problems using a monad.
It takes care of encoding your problem, marshaling the data to an external solver and parsing and interpreting the result into Haskell types.
It is highly inspired by ekmett/ersatz which does the same for QSAT.
Communication with external solvers is handled by tweag/smtlib-backends.
homepage: https://github.com/bruderj15/Hasmtlib
bug-reports: https://github.com/bruderj15/Hasmtlib/issues
license: GPL-3.0-only
license-file: LICENSE
author: Julian Bruder
maintainer: [email protected]
copyright: © 2024 Julian Bruder
category: SMT, Logic
build-type: Simple
extra-source-files: README.md
extra-doc-files: CHANGELOG.md
tested-with: GHC == 9.4.8
, GHC == 9.6.4
, GHC == 9.8.2
library
hs-source-dirs: src
default-language: GHC2021
default-extensions: DataKinds, GADTs, TypeFamilies, OverloadedStrings
exposed-modules: Language.Hasmtlib
, Language.Hasmtlib.Codec
, Language.Hasmtlib.Boolean
, Language.Hasmtlib.Variable
, Language.Hasmtlib.Counting
, Language.Hasmtlib.Internal.Parser
, Language.Hasmtlib.Internal.Render
, Language.Hasmtlib.Internal.Sharing
, Language.Hasmtlib.Internal.Uniplate1
, Language.Hasmtlib.Internal.Constraint
, Language.Hasmtlib.Solver.Bitwuzla
, Language.Hasmtlib.Solver.CVC5
, Language.Hasmtlib.Solver.MathSAT
, Language.Hasmtlib.Solver.OpenSMT
, Language.Hasmtlib.Solver.Yices
, Language.Hasmtlib.Solver.Z3
, Language.Hasmtlib.Type.Expr
, Language.Hasmtlib.Type.Value
, Language.Hasmtlib.Type.MonadSMT
, Language.Hasmtlib.Type.SMT
, Language.Hasmtlib.Type.OMT
, Language.Hasmtlib.Type.Pipe
, Language.Hasmtlib.Type.SMTSort
, Language.Hasmtlib.Type.Solution
, Language.Hasmtlib.Type.Solver
, Language.Hasmtlib.Type.Option
, Language.Hasmtlib.Type.ArrayMap
, Language.Hasmtlib.Type.Bitvec
, Language.Hasmtlib.Type.Relation
, Language.Hasmtlib.Type.Debugger
build-depends: array >= 0.5 && < 1
, attoparsec >= 0.14.4 && < 1
, base >= 4.17.2 && < 5
, lifted-base >= 0.2 && < 0.5
, monad-control >= 1.0 && < 1.2
, bytestring >= 0.11.5 && < 1
, containers >= 0.6.7 && < 1
, unordered-containers >= 0.2.20 && < 0.3
, dependent-map >= 0.4 && < 1
, mtl >= 2.2.2 && < 3
, text >= 2.0.2 && < 3
, data-default >= 0.7.1 && < 1
, lens >= 5 && < 6
, smtlib-backends >= 0.4 && < 0.5
, smtlib-backends-process >= 0.3 && < 0.4
, some >= 1.0.6 && < 1.1
, utf8-string >= 1.0.2 && < 2
, bitvec >= 1.1.5 && < 2
, finite-typelits >= 0.1.0 && < 1
, vector-sized >= 1 && < 2
ghc-options: -O2
-Wall
-Wcompat
-Widentities
-Wincomplete-record-updates
-Wincomplete-uni-patterns
-Wpartial-fields
-Wredundant-constraints
-Wno-type-defaults
-Wno-orphans