-
Notifications
You must be signed in to change notification settings - Fork 1
/
coq-generic-environments.opam
30 lines (26 loc) · 1.14 KB
/
coq-generic-environments.opam
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
opam-version: "2.0"
maintainer: "[email protected]"
version: "dev"
homepage: "https://github.com/coq-community/generic-environments"
dev-repo: "git+https://github.com/coq-community/generic-environments.git"
bug-reports: "https://github.com/coq-community/generic-environments/issues"
license: "MIT"
synopsis: "Generic Environments is a library that provides an abstract data type for environments"
description: """
Generic Environments is a library which provides an abstract data type of environments, as a functor parameterized by a module defining variables, and a function which builds environments for such variables with any Type of type. Usual operations over environments are defined, along with an extensive set of basic and more advanced properties. Moreover, an implementation using lists satisfying and all the required properties is provided.
"""
build: [make "-j%{jobs}%" ]
install: [make "install"]
depends: [
"coq"
]
tags: [
"category:Mathematics/Logic/Type theory"
"keyword:generic environments"
"keyword:typing"
"keyword:type theory"
"logpath:GenericEnvironments"
]
authors: [
"Emmanuel Polonowski <[email protected]>"
]