-
Notifications
You must be signed in to change notification settings - Fork 3
/
copilot-kind.cabal
99 lines (81 loc) · 3.85 KB
/
copilot-kind.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
cabal-version : >= 1.10
name : copilot-kind
description:
Some tools to prove properties on Copilot programs with k-induction model
checking.
version : 0.1
license : BSD3
license-file : LICENSE
maintainer : jonathan.laurent@ens.fr
stability : Experimental
category : Language, Embedded
build-type : Simple
extra-source-files : README.md
author : Jonathan Laurent
library
default-language : Haskell2010
hs-source-dirs : src
ghc-options : -Wall -fwarn-tabs
-fno-warn-name-shadowing
-fno-warn-unused-binds
-fno-warn-unused-imports
-fno-warn-missing-signatures
build-depends : base >= 4.3
, copilot-core
, copilot-language
, mtl
, containers
, pretty
, process
, directory
, parsec
, data-default
, bimap
, xml
, random
default-extensions : GADTs
, MultiParamTypeClasses
, RankNTypes
, KindSignatures
, FlexibleInstances
, DoAndIfThenElse
, GeneralizedNewtypeDeriving
, NamedFieldPuns
, ScopedTypeVariables
, ViewPatterns
, LambdaCase
, TemplateHaskell
exposed-modules : Copilot.Kind
, Copilot.Kind.Lib
, Copilot.Kind.Light
, Copilot.Kind.Kind2
, Copilot.Kind.IL
, Copilot.Kind.TransSys
, Copilot.Kind.Light.Prover
, Copilot.Kind.Kind2.Prover
other-modules : Copilot.Kind.ProofScheme
, Copilot.Kind.Prove
, Copilot.Kind.Prover
, Copilot.Kind.CoreUtils.Expr
, Copilot.Kind.CoreUtils.Operators
, Copilot.Kind.IL.PrettyPrint
, Copilot.Kind.IL.Spec
, Copilot.Kind.IL.Translate
, Copilot.Kind.Kind2.AST
, Copilot.Kind.Kind2.Output
, Copilot.Kind.Kind2.PrettyPrint
, Copilot.Kind.Kind2.Translate
, Copilot.Kind.Light.SMT
, Copilot.Kind.Light.SMTLib
, Copilot.Kind.Misc.Cast
, Copilot.Kind.Misc.Error
, Copilot.Kind.Misc.Invariants
, Copilot.Kind.Misc.Operators
, Copilot.Kind.Misc.Type
, Copilot.Kind.Misc.SExpr
, Copilot.Kind.Misc.Utils
, Copilot.Kind.TransSys.PrettyPrint
, Copilot.Kind.TransSys.Renaming
, Copilot.Kind.TransSys.Spec
, Copilot.Kind.TransSys.Transform
, Copilot.Kind.TransSys.Translate