This repository has been archived by the owner on Aug 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
plover.cabal
115 lines (97 loc) · 3.79 KB
/
plover.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
name: plover
-- The package version. See the Haskell package versioning policy (PVP)
-- for standards guiding when and how versions should be incremented.
-- http://www.haskell.org/haskellwiki/Package_versioning_policy
-- PVP summary: +-+------- breaking API changes
-- | | +----- non-breaking API additions
-- | | | +--- code changes with no API change
version: 0.1.0.0
synopsis: An embedded DSL for compiling linear algebra into C for embedded systems
description: Plover is an embedded Haskell DSL for compiling linear algebra
into robust efficient C code suitable for running on embedded
systems.
.
Plover generates code free of dynamic memory allocation and
provides compile time checking of matrix and vector shapes using a
lightweight dependant type system.
.
Plover also aims to automatically make use of sparse structure
present in many real world linear algebra problems to generate
more efficient code.
license: MIT
license-file: LICENSE
homepage: https://github.com/swift-nav/plover
author: Swift Navigation Inc.
copyright: Copyright (C) 2014-2015 Swift Navigation Inc.
maintainer: Scott Kovach <[email protected]>
category: Language, Math, Linear Algebra
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.22
executable plover
main-is: Main.hs
hs-source-dirs: plover/
build-depends: base >=4.8
, plover
default-language: Haskell2010
library
exposed-modules:
Language.Plover.Main,
Language.Plover.Types,
Language.Plover.Quote,
Language.Plover.Parser,
Language.Plover.ParserTypes,
Language.Plover.Convert,
Language.Plover.SemCheck,
Language.Plover.CodeGen,
Language.Plover.Algebra,
Language.Plover.UsedNames,
Language.Plover.Simplify,
Language.Plover.ErrorUtil,
Language.Plover.Unify,
Language.Plover.CLI,
Language.Plover.ModuleUtils,
Data.Tag
build-depends: base >=4.8
, containers
, mtl >=2.1 && <2.3
, either
, parsec >=3.1 && <3.2
, pretty >= 1.1
, process
, filepath
, directory
, template-haskell
, data-fix
, pretty-show
, mainland-pretty
, language-c-quote == 0.11.4
, srcloc
, haskell-src-meta
, syb
hs-source-dirs: src/
ghc-options:
-- -Wall -Werror
default-language: Haskell2010
test-suite test
type: exitcode-stdio-1.0
main-is: Main.hs
default-language: Haskell2010
ghc-options:
-- -Wall -Werror
-- NOTE: We pull plover directly into the tests, not as a library
-- This reduces reload time in `cabal repl test` by a large factor
hs-source-dirs: test
build-depends:
plover
, HUnit
, QuickCheck
, base >=4.8
, containers
, process
, smallcheck
, tasty
, tasty-hunit
source-repository head
type: git
location: [email protected]:swift-nav/plover.git