This repository was archived by the owner on Feb 18, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlambda-pi-plus.cabal
More file actions
84 lines (76 loc) · 2.6 KB
/
lambda-pi-plus.cabal
File metadata and controls
84 lines (76 loc) · 2.6 KB
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
name: lambda-pi-plus
version: 0.1.0.0
synopsis: A small dependently-typed language for research and learning purposes.
description: LambdaPiPlus extends the language LambdaPi, from
["A Tutorial Implementation of a Dependently Typed Lambda Calculus."](https://www.andres-loeh.de/LambdaPi/).
The language has been extended with Dependent Pairs and metavariables, in place of implicit arguments.
The unification algorithm used is adapted from
["A tutorial implementation of dynamic pattern unification"](http://adam.gundry.co.uk/pub/pattern-unify/).
-- license:
license-file: LICENSE
author: Joey Eremondi
maintainer: joey@eremondi.com
copyright: Joseph Eremondi, 2016
-- category:
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
source-repository head
type: git
location: git://github.com/JoeyEremondi/lambda-pi-plus.git
executable lambda-pi-plus
-- -prof -fprof-auto -fprof-auto -fprof-cafs
ghc-options:
-O2 -Wall -fprof-auto -fprof-auto -fprof-cafs -rtsopts
main-is: Main.hs
other-modules:
ConstraintBased
, Common
, Constraint
, PatternUnify.Check
, PatternUnify.Context
, PatternUnify.Run
, PatternUnify.Tm
, PatternUnify.Unify
, PatternUnify.ConstraintInfo
, Top.Implementation.TypeGraph.Basics
, Top.Implementation.TypeGraph.Class
, Top.Implementation.TypeGraph.Standard
-- other-extensions:
build-depends: base >=4.7 && <4.9
, mtl
, parsec
, pretty
, containers
, unbound-generics
, transformers
hs-source-dirs: src
default-language: Haskell2010
-- library
-- -- -prof -fprof-auto -fprof-auto -fprof-cafs
-- ghc-options:
-- -O2 -fwarn-incomplete-patterns -fwarn-unused-imports
-- exposed-modules:
-- Language.LambdaPiPlus
-- other-modules:
-- ConstraintBased,
-- Common,
-- Constraint,
-- Main,
-- PatternUnify.Check,
-- PatternUnify.Context,
-- PatternUnify.Run,
-- PatternUnify.Tm,
-- PatternUnify.Unify,
-- Language.LambdaPiPlus.Internals
-- -- other-extensions:
-- build-depends: base >=4.7 && <4.9
-- , mtl
-- , parsec
-- , pretty
-- , containers
-- , unbound-generics
-- , template-haskell
-- , th-lift
-- hs-source-dirs: src
-- default-language: Haskell2010