-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.yaml
44 lines (41 loc) · 1.14 KB
/
package.yaml
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
name: verifiable-expressions
version: '0.6.2'
category: Language
author: Bradley Hardy
maintainer: [email protected]
github: camfort/verifiable-expressions
license: Apache-2.0
synopsis: An intermediate language for Hoare logic style verification.
description:
A typed intermediate language for Hoare logic style verification. It defines
the intermediate language and combinators to interact it.
extra-source-files:
- CHANGELOG.md
dependencies:
- base >=4.9 && <5
- containers >=0.5.7 && <0.7
- transformers >=0.5 && <0.7
- mtl >=2.0 && <3
- lens >=4.16.1 && <5.3
- sbv >=8.0 && <10
- union >=0.1.2 && <0.2
- vinyl >=0.14.3 && <0.15
library:
ghc-options: -Wall
exposed-modules:
- Language.Expression
- Language.Expression.Example
- Language.Expression.Choice
- Language.Expression.Scope
- Language.Expression.GeneralOp
- Language.Expression.Prop
- Language.Expression.Pretty
- Language.Expression.Util
- Language.Verification
- Language.Verification.Conditions
- Language.Verification.Core
- Language.While.Hoare
- Language.While.Hoare.Prover
- Language.While.Syntax
- Language.While.Syntax.Sugar
- Language.While.Test