All Projects → coq-community → coqeal

coq-community / coqeal

Licence: other
The Coq Effective Algebra Library [maintainers=@CohenCyril,@proux01]

Programming Languages

Coq
218 projects

Projects that are alternatives of or similar to coqeal

autosubst
Automation for de Bruijn syntax and substitution in Coq [maintainers=@RalfJung,@co-dan]
Stars: ✭ 41 (-33.87%)
Mutual labels:  coq, mathcomp
odd-order
The formal proof of the Odd Order Theorem
Stars: ✭ 20 (-67.74%)
Mutual labels:  coq, mathcomp
Actuary
Formalization of the basic actuarial mathematics using Coq
Stars: ✭ 17 (-72.58%)
Mutual labels:  coq, mathcomp
Abel
A proof of Abel-Ruffini theorem.
Stars: ✭ 26 (-58.06%)
Mutual labels:  coq, mathcomp
corn
Coq Repository at Nijmegen [maintainers=@spitters,@VincentSe]
Stars: ✭ 106 (+70.97%)
Mutual labels:  coq, coq-platform
multinomials
Multinomials for the Mathematical Components library.
Stars: ✭ 12 (-80.65%)
Mutual labels:  coq, mathcomp
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 (-67.74%)
Mutual labels:  coq, coq-platform
gaia
Implementation of books from Bourbaki's Elements of Mathematics in Coq [maintainer=@thery]
Stars: ✭ 15 (-75.81%)
Mutual labels:  coq, mathcomp
finmap
Finite sets, finite maps, multisets and generic sets
Stars: ✭ 45 (-27.42%)
Mutual labels:  coq, mathcomp
stablesort
Stable sort algorithms and their stability proofs in Coq
Stars: ✭ 19 (-69.35%)
Mutual labels:  coq, mathcomp
Coqgym
A Learning Environment for Theorem Proving with the Coq proof assistant
Stars: ✭ 201 (+224.19%)
Mutual labels:  coq
Fscq
FSCQ is a certified file system written and proven in Coq
Stars: ✭ 208 (+235.48%)
Mutual labels:  coq
coq-100-theorems
Statements of famous theorems proven in Coq [maintainer=@jmadiot]
Stars: ✭ 41 (-33.87%)
Mutual labels:  coq
coq-ecosystem
No description or website provided.
Stars: ✭ 39 (-37.1%)
Mutual labels:  coq
Metacoq
Metaprogramming in Coq
Stars: ✭ 192 (+209.68%)
Mutual labels:  coq
coq-to-ocaml-to-js
Proof of concept to generate safe and fast JavaScript
Stars: ✭ 25 (-59.68%)
Mutual labels:  coq
Quickchick
Randomized Property-Based Testing Plugin for Coq
Stars: ✭ 188 (+203.23%)
Mutual labels:  coq
Jscert
A Coq specification of ECMAScript 5 (JavaScript) with verified reference interpreter
Stars: ✭ 186 (+200%)
Mutual labels:  coq
Coq Chick Blog
🐣 A blog engine written and proven in Coq
Stars: ✭ 173 (+179.03%)
Mutual labels:  coq
coqffi
Coq to OCaml FFI made easy [maintainer=@lthms]
Stars: ✭ 27 (-56.45%)
Mutual labels:  coq

CoqEAL

Docker CI Contributing Code of Conduct Zulip

This Coq library contains a subset of the work that was developed in the context of the ForMath EU FP7 project (2009-2013). It has two parts:

  • theory, which contains developments in algebra including normal forms of matrices, and optimized algorithms on MathComp data structures.
  • refinements, which is a framework to ease change of data representations during a proof.

Meta

Building and installation instructions

The easiest way to install the latest released version of CoqEAL is via OPAM:

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

To instead build and install manually, do:

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

Theory

The theory directory has the following content:

  • ssrcomplements, minor mxstructure, polydvd, similar, binetcauchy, ssralg_ring_tac: Various extensions of the Mathematical Components library.

  • dvdring, coherent, stronglydiscrete, edr: Hierarchy of structures with divisibility (from rings with divisibility, PIDs, elementary divisor rings, etc.).

  • fpmod: Formalization of finitely presented modules.

  • kaplansky: For providing elementary divisor rings from the Kaplansky condition.

  • closed_poly: Polynomials with coefficients in a closed field.

  • companion, frobenius_form, jordan, perm_eq_image, smith_complements: Results on normal forms of matrices.

  • bareiss_dvdring, bareiss, gauss, karatsuba, rank, strassen, toomcook, smithpid, smith: Various efficient algorithms for computing operations on polynomials or matrices.

Refinements

The refinements directory has the following content:

  • refinements: Classes for refinements and refines together with operational typeclasses for common operations.

  • binnat: Proof that the binary naturals of Coq (N) are a refinement of the MathComp unary naturals (nat) together with basic operations.

  • binord: Proof that the binary natural numbers of Coq (N) are a refinement of the MathComp ordinals.

  • binint: MathComp integers (ssrint) are refined to a new type parameterized by positive numbers (represented by a sigma type) and natural numbers. This means that proofs can be done using only lemmas from the MathComp library which leads to simpler proofs than previous versions of binint (e.g., N).

  • binrat: Arbitrary precision rational numbers (bigQ) from the Bignums library are refined to MathComp's rationals (rat).

  • rational: The rational numbers of MathComp (rat) are refined to pairs of elements refining integers using parametricity of refinements.

  • seqmatrix and seqmx_complements: Refinement of MathComp matrices (M[R]_(m,n)) to lists of lists (seq (seq R)).

  • seqpoly: Refinement of MathComp polynomials ({poly R}) to lists (seq R).

  • multipoly: Refinement of MathComp multinomials and multivariate polynomials to Coq finite maps.

Files should use the following conventions (w.r.t. Local and Global instances):

(** Part 1: Generic operations *)
Section generic_operations.

Global Instance generic_operation := ...

(** Part 2: Correctness proof for proof-oriented types and programs *)
Section theory.

Local Instance param_correctness : param ...

(** Part 3: Parametricity *)
Section parametricity.

Global Instance param_parametricity : param ...
Proof. exact: param_trans. Qed.

End parametricity.
End theory.
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].