-
Notifications
You must be signed in to change notification settings - Fork 0
/
redfin.cabal
97 lines (90 loc) · 3.23 KB
/
redfin.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
cabal-version: 2.2
name: redfin
version: 0.0.1
synopsis: Specification and verification of the REDFIN sequencer
author: Andrey Mokhov <[email protected]>, github: @snowleopard,
Georgy Lukyanov <[email protected]>, github: @geo2a
maintainer: Georgy Lukyanov <[email protected]>, github: @geo2a
copyright: Andrey Mokhov, Georgy Lukyanov, 2017-2020
homepage: https://github.com/tuura/redfin
category: Hardware
build-type: Simple
extra-source-files: README.md
source-repository head
type: git
location: https://github.com/tuura/redfin.git
library
hs-source-dirs: src
exposed-modules: Redfin
Redfin.SBV
Redfin.Types
Redfin.Assembly
Redfin.Decode
Redfin.Listing
Redfin.Language.Expression
Redfin.Data.Fixed
Redfin.Simulate
Redfin.Examples.Common
Redfin.Examples.Energy
Redfin.Examples.Energy.Units
Redfin.Examples.Energy.WCET
Redfin.Examples.ManhattanDistance
Redfin.Examples.Sum
Redfin.Semantics
build-depends: QuickCheck >= 2.14.1,
base >= 4.8 && < 5,
containers >= 0.5.7,
directory >= 1.3.3.0,
extra,
generic-random >= 1.3.0.1,
mtl,
pretty-simple,
sbv >= 8.9,
text,
time >= 1.8.0.2,
units >= 2.4.1.1,
units-defs
default-language: Haskell2010
default-extensions: FlexibleContexts
GeneralizedNewtypeDeriving
TypeApplications
RecordWildCards
ScopedTypeVariables
TupleSections
TypeFamilies
DataKinds
BinaryLiterals
DeriveFunctor
GHC-options: -O2 -Wall -fwarn-tabs
-fno-warn-unused-local-binds
-fno-warn-unused-matches
-fno-warn-type-defaults
-fno-warn-unused-imports
-fno-warn-name-shadowing
-fno-warn-unused-top-binds
test-suite tests
default-language: Haskell2010
hs-source-dirs: tests
main-is: Main.hs
type: exitcode-stdio-1.0
build-depends:
base >= 4.7 && < 5,
containers,
HUnit,
QuickCheck,
tasty,
tasty-hunit,
tasty-quickcheck,
sbv,
generic-random,
redfin
executable benchmark
main-is: Main.hs
hs-source-dirs: benchmark
build-depends: base,
directory,
directory >= 1.3.3.0,
redfin,
sbv,
time,
time >= 1.8.0.2