-
Notifications
You must be signed in to change notification settings - Fork 5
/
laop.cabal
90 lines (83 loc) · 3.15 KB
/
laop.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
cabal-version: 3.0
name: laop
version: 0.2.0.0
synopsis: Matrix programming library
description: Matrix programming library that uses a type-safe inductive definition
inspired by the Linear Algebra of Programming
homepage: https://github.com/bolt12/laop
bug-reports: https://github.com/bolt12/laop/issues
license: MIT
license-file: LICENSE
author: Armando Santos
maintainer: Armando Santos <armandoifsantos@gmail.com>
copyright: 2023 Armando Santos
category: Data
build-type: Simple
extra-doc-files: README.md
CHANGELOG.md
tested-with: GHC == 8.10.7
GHC == 9.2.8
source-repository head
type: git
location: https://github.com/bolt12/laop.git
common common-options
build-depends: base >= 4.12.0.0 && < 5,
deepseq
ghc-options: -Wall
-Wno-unticked-promoted-constructors
-Wcompat
-Wincomplete-uni-patterns
-Wincomplete-record-updates
-Wpartial-fields
-Widentities
-Wredundant-constraints
-Wunused-packages
-fhide-source-paths
-Wmissing-export-lists
-Wpartial-fields
-Wno-compat-unqualified-imports
-- Needed because ghc considers exporting f and f' the same name
-Wno-duplicate-exports
default-language: Haskell2010
library
import: common-options
hs-source-dirs: src
exposed-modules: LAoP.Dist
LAoP.Dist.Internal
LAoP.Matrix.Internal
LAoP.Matrix.Nat
LAoP.Matrix.Type
LAoP.Relation
LAoP.Relation.Internal
LAoP.Utils
LAoP.Utils.Internal
test-suite laop-test
import: common-options
type: exitcode-stdio-1.0
hs-source-dirs: test
other-modules: Examples.Readme
main-is: Spec.hs
build-depends: laop
ghc-options: -threaded
-rtsopts
-with-rtsopts=-N
-funfolding-use-threshold=16
-fexcess-precision
-optc-O3
-optc-ffast-math
benchmark laop-benchmark
import: common-options
type: exitcode-stdio-1.0
hs-source-dirs: benchmark
main-is: Main.hs
build-depends: criterion
, QuickCheck
, deepseq
, laop
ghc-options: -threaded
-rtsopts
-with-rtsopts=-N
-funfolding-use-threshold=16
-fexcess-precision
-optc-O3
-optc-ffast-math