-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathliterate-unitb-logic.cabal
154 lines (132 loc) · 5.71 KB
/
literate-unitb-logic.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
-- Initial literate-unitb-logic.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
-- The name of the package.
name: literate-unitb-logic
-- The package version. See the Haskell package versioning policy (PVP)
-- for standards guiding when and how versions should be incremented.
-- http://www.haskell.org/haskellwiki/Package_versioning_policy
-- PVP summary: +-+------- breaking API changes
-- | | +----- non-breaking API additions
-- | | | +--- code changes with no API change
version: 0.1.0.0
-- A short (one-line) description of the package.
synopsis: Logic modules for Literate Unit-B
-- A longer description of the package.
description: Backend prover for doing predicate calculus with sequent calculus proofs
-- The license under which the package is released.
license: MIT
-- The file containing the license text.
license-file: LICENSE
-- The package author(s).
author: Simon Hudon
-- An email address to which users can send suggestions, bug reports, and
-- patches.
maintainer: [email protected]
-- A copyright notice.
-- copyright:
category: Development
build-type: Simple
-- Extra files to be distributed with the package, such as examples or a
-- README.
-- extra-source-files:
-- Constraint on the version of Cabal needed to build this package.
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/unitb/literate-unitb-logic
library
-- Modules exported by the library.
exposed-modules:
Language.Haskell.TH.Unqualify
Logic.Expr
Logic.Expr.Classes
Logic.Expr.Const
Logic.Expr.Context
Logic.Expr.Declaration
Logic.Expr.Existential
Logic.Expr.Expr
Logic.Expr.Fun
Logic.Expr.Genericity
Logic.Expr.Label
Logic.Expr.Parser
Logic.Expr.PrettyPrint
Logic.Expr.Printable
Logic.Expr.Prism
Logic.Expr.Quantifier
Logic.Expr.Scope
Logic.Expr.Type
Logic.Expr.TypeChecking
Logic.Expr.Variable
Logic.Expr.Parser.Internal.Monad
Logic.Expr.Parser.Internal.Parser
Logic.Expr.Parser.Internal.Scanner
Logic.Expr.Parser.Internal.Setting
Logic.Names
Logic.Names.Internals
Logic.Names.Packaged
Logic.OldOperator
Logic.Operator
Logic.Proof
Logic.Proof.Lambda
Logic.Proof.Monad
Logic.Proof.POGenerator
Logic.Proof.ProofTree
Logic.Proof.Sequent
Logic.Proof.Tactics
Logic.QuasiQuote
Logic.Theories
Logic.Theories.Arithmetic
Logic.Theories.FunctionTheory
Logic.Theories.IntervalTheory
Logic.Theories.Notation
Logic.Theories.PredCalc
Logic.Theories.RelationTheory
Logic.Theories.SetTheory
Logic.Theory
Logic.Theory.Internals
Logic.Theory.Monad
Logic.UnitTest
Logic.WellDefinedness
Z3.Applicative
Z3.Z3
-- TEST CASES
Logic.Test
Logic.Test.Stable
Z3.Test
-- Modules included in this library but not exported.
-- other-modules:
-- LANGUAGE extensions used by modules in this package.
default-extensions: TupleSections, DeriveFunctor, DeriveGeneric, DeriveFoldable, RankNTypes, MultiParamTypeClasses, GeneralizedNewtypeDeriving, FlexibleContexts, FlexibleInstances, DeriveDataTypeable, TypeSynonymInstances, DefaultSignatures, DeriveTraversable, FunctionalDependencies, ImplicitParams, QuasiQuotes
ghc-options: -W -fwarn-missing-signatures
-fwarn-incomplete-uni-patterns
-fwarn-missing-methods
-fno-ignore-asserts
-fwarn-tabs
-j8
-- Other library packages from which modules are imported.
build-depends: base >= 4.8 && < 5, lens >= 4.12, array, containers, deepseq, data-default, cereal < 5, QuickCheck, mtl, template-haskell, hashable, dlist, semigroups, either, transformers, contravariant, directory, filepath, process, SafeSemaphore, data-ordlist, MissingH, pseudomacros, ConfigFile, literate-unitb-utils, literate-unitb-config, literate-unitb-latex, control-invariants, generic-instances, th-printf, axiomatic-classes, partial-order, existential, string-lenses, data-packaged, monad-loops, classy-lens-hierarchy, unitb-testing, lens-extra, axiomatic-classes, pretty-printable, bipartite-graph, prelude-extras, syntax-error, quickcheck-report, async
-- Directories containing source files.
hs-source-dirs: .
-- Base language which the package is written in.
default-language: Haskell2010
test-suite test
ghc-options: -W -fwarn-missing-signatures
-fwarn-incomplete-uni-patterns
-fwarn-missing-methods
-threaded -fno-ignore-asserts
-fwarn-tabs
-j8
type: exitcode-stdio-1.0
hs-source-dirs: suite
default-language: Haskell2010
main-is: test.hs
build-depends: base >= 4.8 && < 5,
shelly, directory >= 1.2.2.0,
literate-unitb-utils,
literate-unitb-logic,
literate-unitb-latex,
unitb-testing,
process,
lens, axiomatic-classes
default-language: Haskell2010
default-extensions: TupleSections, DeriveFunctor, DeriveGeneric, DeriveFoldable, RankNTypes, MultiParamTypeClasses, GeneralizedNewtypeDeriving, TemplateHaskell, FlexibleContexts, FlexibleInstances, DeriveDataTypeable, TypeSynonymInstances, DefaultSignatures, DeriveTraversable, FunctionalDependencies, ImplicitParams