All Projects → coq-community → corn

coq-community / corn

Licence: GPL-2.0 license
Coq Repository at Nijmegen [maintainers=@spitters,@VincentSe]

Programming Languages

Coq
218 projects

Projects that are alternatives of or similar to corn

fcsl-pcm
Partial Commutative Monoids
Stars: ✭ 20 (-81.13%)
Mutual labels:  coq, coq-library
coqeal
The Coq Effective Algebra Library [maintainers=@CohenCyril,@proux01]
Stars: ✭ 62 (-41.51%)
Mutual labels:  coq, coq-platform
InfSeqExt
A Coq library for reasoning (co)inductively on infinite sequences using LTL-like modal operators
Stars: ✭ 12 (-88.68%)
Mutual labels:  coq, coq-library
bignums
Coq library of arbitrarily large numbers, providing BigN, BigZ, BigQ that used to be part of the standard library [maintainers=@proux01,@erikmd]
Stars: ✭ 20 (-81.13%)
Mutual labels:  coq, coq-platform
topology
General topology in Coq [maintainers=@amiloradovsky,@Columbus240,@stop-cran]
Stars: ✭ 36 (-66.04%)
Mutual labels:  coq, coq-library
Coq Haskell
A library for formalizing Haskell types and functions in Coq
Stars: ✭ 135 (+27.36%)
Mutual labels:  coq
Fpga readings
Recipe for FPGA cooking
Stars: ✭ 164 (+54.72%)
Mutual labels:  coq
Math Classes
A library of abstract interfaces for mathematical structures in Coq [[email protected]]
Stars: ✭ 133 (+25.47%)
Mutual labels:  coq
Dot
formalization of the Dependent Object Types (DOT) calculus
Stars: ✭ 132 (+24.53%)
Mutual labels:  coq
Foundations
Voevodsky's original development of the univalent foundations of mathematics in Coq
Stars: ✭ 210 (+98.11%)
Mutual labels:  coq
Metacoq
Metaprogramming in Coq
Stars: ✭ 192 (+81.13%)
Mutual labels:  coq
Kami
Kami - a DSL for designing Hardware in Coq, and the associated semantics and theorems for proving its correctness. Kami is inspired by Bluespec. It is actually a complete rewrite of an older version from MIT
Stars: ✭ 158 (+49.06%)
Mutual labels:  coq
Advent Of Coq 2018
Advent of Code 2018, in Coq! (https://adventofcode.com/2018)
Stars: ✭ 137 (+29.25%)
Mutual labels:  coq
Coq Chick Blog
🐣 A blog engine written and proven in Coq
Stars: ✭ 173 (+63.21%)
Mutual labels:  coq
Proofs
A selection of formal proofs in Coq.
Stars: ✭ 135 (+27.36%)
Mutual labels:  coq
Coqgym
A Learning Environment for Theorem Proving with the Coq proof assistant
Stars: ✭ 201 (+89.62%)
Mutual labels:  coq
Interactiontrees
A Library for Representing Recursive and Impure Programs in Coq
Stars: ✭ 133 (+25.47%)
Mutual labels:  coq
Coqhammer
CoqHammer: An Automated Reasoning Hammer Tool for Coq - Proof Automation for Dependent Type Theory
Stars: ✭ 157 (+48.11%)
Mutual labels:  coq
Quickchick
Randomized Property-Based Testing Plugin for Coq
Stars: ✭ 188 (+77.36%)
Mutual labels:  coq
Verdi Raft
An implementation of the Raft distributed consensus protocol, verified in Coq using the Verdi framework
Stars: ✭ 143 (+34.91%)
Mutual labels:  coq

C-CoRN

Docker CI Contributing Code of Conduct Zulip

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.

Meta

  • Author(s):
    • 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
  • Coq-community maintainer(s):
  • License: GNU General Public License v2
  • Compatible Coq versions: Coq 8.11 or greater
  • Additional dependencies:
    • Math-Classes 8.8.1 or greater, which is a library of abstract interfaces for mathematical structures that is heavily based on Coq's type classes.

    • Bignums

  • Coq namespace: CoRN
  • Related publication(s):

Building and installation instructions

The easiest way to install the latest released version of C-CoRN is via OPAM:

opam repo add coq-released https://coq.inria.fr/opam/released
opam install coq-corn

To instead build and install manually, you have to start with the bignums dependency:

git clone https://github.com/coq/bignums
cd bignums
make   # or make -j <number-of-cores-on-your-machine>
make install

The last make install is necessary, it copies bignums to a common folder, which is usually coq/user-contrib. Afterwards the similar commands for math-classes will find bignums there. Finally build corn itself:

git clone https://github.com/coq-community/corn
cd corn
./configure.sh
make   # or make -j <number-of-cores-on-your-machine>
make install

Building C-CoRN with SCons

C-CoRN supports building with SCons. SCons is a modern Python-based Make-replacement.

To build C-CoRN with SCons run scons to build the whole library, or scons some/module.vo to just build some/module.vo (and its dependencies).

In addition to common Make options like -j N and -k, SCons supports some useful options of its own, such as --debug=time, which displays the time spent executing individual build commands.

scons -c replaces Make clean

For more information, see the SCons documentation.

Building documentation

To build CoqDoc documentation, say scons coqdoc.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].