This repository has been archived by the owner on Nov 17, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcopilot-sbv.cabal
61 lines (55 loc) · 2.47 KB
/
copilot-sbv.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
cabal-version : >= 1.10
name : copilot-sbv
version : 2.2.1
synopsis : A compiler for CoPilot targeting SBV.
description :
The Copilot back-end targeting SBV <http://hackage.haskell.org/package/sbv>.
.
Copilot is a stream (i.e., infinite lists) domain-specific language (DSL) in
Haskell that compiles into embedded C. Copilot contains an interpreter,
multiple back-end compilers, and other verification tools. A tutorial, bug
reports, and todos are available at
<https://github.com/Copilot-Language/copilot-discussion>.
.
Examples are available at
<https://github.com/Copilot-Language/Copilot/tree/master/Examples>.
license : BSD3
license-file : LICENSE
maintainer : [email protected]
stability : Experimental
category : Language, Embedded
build-type : Simple
extra-source-files : README.md
author : Lee Pike
, Robin Morisset
, Alwyn Goodloe
, Sebastian Niller
, Nis Nordby Wegmann
source-repository head
type: git
location: http://github.com/leepike/copilot-sbv.git
library
default-language : Haskell2010
hs-source-dirs : src
ghc-options : -Wall -fwarn-tabs
ghc-prof-options : -auto-all -caf-all
build-depends : sbv >= 5.0
, base >= 4.0 && < 5
, containers >= 0.4
, copilot-core == 2.2.1
, directory >= 1.2.1
, pretty >= 1
, filepath >= 1.1
exposed-modules : Copilot.Compile.SBV
, Copilot.Compile.SBV.ACSLexpr
, Copilot.Compile.SBV.ACSLproof
, Copilot.Compile.SBV.Code
, Copilot.Compile.SBV.Common
, Copilot.Compile.SBV.Copilot2SBV
, Copilot.Compile.SBV.MetaTable
, Copilot.Compile.SBV.Params
, Copilot.Compile.SBV.Queue
, Copilot.Compile.SBV.Witness
, Copilot.Compile.SBV.Driver
, Copilot.Compile.SBV.Transform
, Copilot.Compile.SBV.Makefile