Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/math-comp/bigenough
Asymptotic reasoning with bigenough
https://github.com/math-comp/bigenough
coq mathcomp ssreflect
Last synced: about 2 months ago
JSON representation
Asymptotic reasoning with bigenough
- Host: GitHub
- URL: https://github.com/math-comp/bigenough
- Owner: math-comp
- Created: 2018-08-08T14:18:23.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-07-17T15:32:45.000Z (6 months ago)
- Last Synced: 2024-07-17T19:16:19.941Z (6 months ago)
- Topics: coq, mathcomp, ssreflect
- Language: Coq
- Size: 24.4 KB
- Stars: 4
- Watchers: 7
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# bigenough
[![Docker CI][docker-action-shield]][docker-action-link]
[docker-action-shield]: https://github.com/math-comp/bigenough/workflows/Docker%20CI/badge.svg?branch=master
[docker-action-link]: https://github.com/math-comp/bigenough/actions?query=workflow:"Docker%20CI"The package contains a package to reasoning with big enough objects
(mostly natural numbers). This package is essentially for backward
compatibility purposes as `bigenough` will be subsumed by the near
tactics. The formalization is based on the Mathematical Components
library.## Meta
- Author(s):
- Cyril Cohen
- License: [CeCILL-B](LICENSE)
- Compatible Coq versions: 8.10 or later
- Additional dependencies:
- [MathComp ssreflect](https://math-comp.github.io) 1.6 or later
- Coq namespace: `mathcomp.bigenough`
- Related publication(s): none## Building and installation instructions
The easiest way to install the latest released version of bigenough
is via [OPAM](https://opam.ocaml.org/doc/Install.html):```shell
opam repo add coq-released https://coq.inria.fr/opam/released
opam install coq-mathcomp-bigenough
```To instead build and install manually, do:
``` shell
git clone https://github.com/math-comp/bigenough.git
cd bigenough
make # or make -j
make install
```# A small library to do epsilon - N reasoning.
This repository is essentially for archiving purposes as `bigenough`
will be subsumed by the [near tactics](https://github.com/math-comp/analysis/blob/9bfd5a1971c6989f51d9c44341bb71b2fd5e3c76/topology.v#L93).The formalization is based on the [Mathematical Components](https://github.com/math-comp/math-comp) library for the [Coq](https://coq.inria.fr) proof assistant,
although it requires only the ssreflect package.