The Standard Library of the Rocq Prover
January 23, 2025 ยท View on GitHub
The Rocq Prover is an interactive theorem prover, or proof assistant. It provides a formal language to write mathematical definitions, executable algorithms and theorems together with an environment for semi-interactive development of machine-checked proofs.
This repository contains the standard library of the Rocq Prover.
Installation
Information on how to build and install from sources can be found in
INSTALL.md.
Then, the recommended way to require standard library modules is From Stdlib Require {Import,Export,} <LibraryModules>., except for Byte
(use From Stdlib.Strings or From Stdlib.Init), Tactics (use
From Stdlib.Program or From Stdlib.Init), Tauto (use From Stdlib.micromega of From Stdlib.Init) and Wf (use From Stdlib.Program or From Stdlib.Init).
Documentation
The sources of the documentation can be found in directory doc.
See doc/README.md to learn more about the documentation,
in particular how to build it. The
documentation of the last released version is available on the Rocq Prover
web site at rocq-prover.org/docs.
The documentation of the master branch is continuously deployed. See:
Changes
The Recent changes chapter of the reference manual explains the differences and the incompatibilities of each new version of the standard library. If you upgrade, please read it carefully as it contains important advice on how to approach some problems you may encounter.
Questions and discussion
We have a number of channels to reach the user community and the development team:
- Our Zulip chat, for casual and high traffic discussions.
- Our Discourse forum, for more structured and easily browsable discussions and Q&A.
See also rocq-prover.org/community, which lists several other active platforms.
Bug reports
Please report any bug / feature request in our issue tracker.
To be effective, bug reports should mention
the Rocq version (rocq -v), the configuration
used, and include a complete source example leading to the bug.
Contributing to the Standard Library of the Rocq Prover
Guidelines for contributing in various ways are listed in the contributor's guide.