-
Notifications
You must be signed in to change notification settings - Fork 6
/
meta.yml
82 lines (64 loc) · 2.01 KB
/
meta.yml
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
---
fullname: Dedekind Reals
shortname: dedekind-reals
organization: coq-community
community: true
action: true
synopsis: A formalization of the Dedekind real numbers in Coq
description: |-
A formalization of Dedekind reals numbers that started as a
student project at the University of Ljubljana under the supervision
of Andrej Bauer, and was brought to the present state by Vincent Semeria.
At this point the formalization of the field of reals is finished.
There are still several unfinished theorems concering the lattice-theoretic
structure of the reals (search for `todo` in the Coq files). We would be
delighted by contributions that would bring the formalization
closer to completion.
authors:
- name: Andrej Bauer
email: [email protected]
- name: Vincent Semeria
email: [email protected]
maintainers:
- name: Andrej Bauer
nickname: andrejbauer
opam-file-maintainer: [email protected]
opam-file-version: dev
build: |-
## Building instructions
To build and install, do:
```shell
git clone https://github.com/coq-community/dedekind-reals.git
cd dedekind-reals
make # or make -j <number-of-cores-on-your-machine>
make install
```
license:
fullname: MIT License
identifier: MIT
supported_coq_versions:
text: 8.16 and later
opam: '{>= "8.16"}'
tested_coq_opam_versions:
- version: 'dev'
- version: '8.20'
- version: '8.19'
- version: '8.18'
- version: '8.17'
- version: '8.16'
namespace: DedekindReals
keywords:
- name: real numbers
- name: analysis
categories:
- name: Mathematics/Real Calculus and Topology
documentation: |-
## Structure of the modules
- `MiscLemmas`: various lemmas about rational numbers
- `Cut`: definition of Dedekind cuts and several other basic notions
- `Additive`: Additive structure of the reals
- `Multiplication` : Multiplicative structure of the relas
- `Order` : The order on the reals
- `Archimedean`: the proof that the reals satisfy the archimedean property
- `Completeness`: the reals are Dedekind-complete
---