-
Notifications
You must be signed in to change notification settings - Fork 44
/
coq-corn.opam
92 lines (78 loc) · 2.17 KB
/
coq-corn.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
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
opam-version: "2.0"
maintainer: "b.a.w.spitters@gmail.com"
version: "dev"
homepage: "https://github.com/coq-community/corn"
dev-repo: "git+https://github.com/coq-community/corn.git"
bug-reports: "https://github.com/coq-community/corn/issues"
license: "GPL-2.0"
synopsis: "The Coq Constructive Repository at Nijmegen."
description: """
CoRN includes the following parts:
- Algebraic Hierarchy
An axiomatic formalization of the most common algebraic
structures, including setoids, monoids, groups, rings,
fields, ordered fields, rings of polynomials, real and
complex numbers
- Model of the Real Numbers
Construction of a concrete real number structure
satisfying the previously defined axioms
- Fundamental Theorem of Algebra
A proof that every non-constant polynomial on the complex
plane has at least one root
- Real Calculus
A collection of elementary results on real analysis,
including continuity, differentiability, integration,
Taylor's theorem and the Fundamental Theorem of Calculus
- Exact Real Computation
Fast verified computation inside Coq. This includes: real numbers, functions,
integrals, graphs of functions, differential equations.
"""
build: [
["./configure.sh"]
[make "-j%{jobs}%"]
]
install: [make "install"]
depends: [
"coq" {(>= "8.18" & < "8.20~") | (= "dev")}
"coq-math-classes" {(>= "8.8.1") | (= "dev")}
"coq-bignums"
]
tags: [
"category:Mathematics/Algebra"
"category:Mathematics/Real Calculus and Topology"
"category:Mathematics/Exact Real computation"
"keyword:constructive mathematics"
"keyword:algebra"
"keyword:real calculus"
"keyword:real numbers"
"keyword:Fundamental Theorem of Algebra"
"logpath:CoRN"
]
authors: [
"Evgeny Makarov"
"Robbert Krebbers"
"Eelis van der Weegen"
"Bas Spitters"
"Jelle Herold"
"Russell O'Connor"
"Cezary Kaliszyk"
"Dan Synek"
"Luís Cruz-Filipe"
"Milad Niqui"
"Iris Loeb"
"Herman Geuvers"
"Randy Pollack"
"Freek Wiedijk"
"Jan Zwanenburg"
"Dimitri Hendriks"
"Henk Barendregt"
"Mariusz Giero"
"Rik van Ginneken"
"Dimitri Hendriks"
"Sébastien Hinderer"
"Bart Kirkels"
"Pierre Letouzey"
"Lionel Mamane"
"Nickolay Shmyrev"
"Vincent Semeria"
]