-
Notifications
You must be signed in to change notification settings - Fork 2
/
shaped-types.cabal
78 lines (62 loc) · 2.4 KB
/
shaped-types.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
Name: shaped-types
Version: 0.0.0
Cabal-Version: >= 1.6
Synopsis: Statically shaped types
Category: data
Description:
Experimenting with statically shaped types, GHC specialization, and reification
Author: Conal Elliott
Maintainer: [email protected]
Copyright: (c) 2016 by Conal Elliott
License: BSD3
License-File: COPYING
Stability: experimental
build-type: Simple
source-repository head
type: git
location: git://github.com/conal/shaped-types.git
Library
hs-Source-Dirs: src
Extensions:
Build-Depends: QuickCheck >= 2.7.3
, base<5
, circat
, ghc-prim
, keys
, mtl >= 2.2.1
, newtype-generics
, pointed
-- , reification-rules
-- TODO: can I drop ghc-prim and still compile with the reification plugin?
Exposed-Modules:
ShapedTypes.Misc
ShapedTypes.Sized
ShapedTypes.ApproxEq
ShapedTypes.Linear
ShapedTypes.Scan
ShapedTypes.ScanF
ShapedTypes.FFT
ShapedTypes.Shift
ShapedTypes.Pair
ShapedTypes.Nat
ShapedTypes.Vec
ShapedTypes.RPow
ShapedTypes.LPow
ShapedTypes.Fams
ShapedTypes.Orphans
ShapedTypes.Add
Other-Modules:
ShapedTypes.Types.Pair
ShapedTypes.Types.Vec
ShapedTypes.Types.RPow
ShapedTypes.Types.LPow
ghc-options: -Wall -O
-- -fplugin=ReificationRules.Plugin -dcore-lint -fexpose-all-unfoldings
-- -fplugin-opt=ReificationRules.Plugin:trace
-- -ddump-rule-firings
-- -ddump-rule-rewrites
-- -ddump-inlinings
-- -ddump-rules
-dsuppress-idinfo -dsuppress-module-prefixes
-fsimpl-tick-factor=200
-- TODO: Add a flag for whether to compile with reification.