forked from NeuroCorgi/sop-satisfier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sop-satisfier.cabal
53 lines (49 loc) · 1.85 KB
/
sop-satisfier.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
cabal-version: 3.0
name: sop-satisfier
version: 0.3.4.5
synopsis: Check satisfiability of expressions on natural numbers
description:
Expression satisfier on natural numbers.
.
It can reason about expressions contatining
addition and multiplication.
It also provides limited support of exponentiations and subtraction.
license: BSD-3-Clause
license-file: LICENSE
author: Aleksandr Pokatilov <[email protected]>
maintainer: QBayLogic B.V. <[email protected]>
build-type: Simple
category: Solver, Symbolic Arithmetic
extra-doc-files: CHANGELOG.md
README.md
tested-with: GHC == 8.8.4, GHC == 8.10.7, GHC == 9.0.2, GHC == 9.2.8,
GHC == 9.4.8, GHC == 9.6.6, GHC == 9.8.4, GHC == 9.10.1,
GHC == 9.12.1
source-repository head
type: git
location: https://github.com/clash-lang/sop-satisfier
common warnings
ghc-options: -Wall
library
import: warnings
exposed-modules: SoPSat.Satisfier,
SoPSat.SoP,
SoPSat.Internal.Unify,
SoPSat.Internal.Range,
SoPSat.Internal.SoP,
SoPSat.Internal.NewtonsMethod,
SoPSat.Internal.SolverMonad
build-depends: base >=4.13 && <5,
containers >=0.6.2.1 && <0.8,
transformers >=0.5 && <0.7
hs-source-dirs: src
default-language: Haskell2010
test-suite system-tests
type: exitcode-stdio-1.0
main-is: SystemTests.hs
build-depends: base >=4.13 && <5,
sop-satisfier,
tasty ^>= 1.5,
tasty-hunit ^>=0.9
hs-source-dirs: tests
default-language: Haskell2010