Proof Assistant Projects
Collection
Digesting proof assistant libraries for AI ingestion. • 103 items • Updated • 3
Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
Randomized property-based testing plugin for Coq, inspired by QuickCheck.
5a6c291b11e9affe059c0e1812612bc474d0a129| Column | Type | Description |
|---|---|---|
| statement | string | Declaration signature/claim with the leading keyword removed (verbatim slice); the full declaration minus its proof |
| proof | string | Verbatim proof/body, empty if the declaration has none |
| type | string | Declaration keyword |
| symbolic_name | string | Declaration identifier |
| library | string | Sub-library |
| filename | string | Repository-relative source path |
| imports | list[string] | File-level Require/Import modules |
| deps | list[string] | Intra-corpus identifiers referenced |
| docstring | string | Preceding documentation comment, empty if absent |
| source_url | string | Upstream repository |
| commit | string | Upstream commit extracted |
| Type | Count |
|---|---|
| Definition | 675 |
| Lemma | 575 |
| Instance | 380 |
| Inductive | 210 |
| Fixpoint | 188 |
| Theorem | 186 |
| Notation | 133 |
| Ltac2 | 132 |
| Class | 82 |
| Example | 71 |
| Parameter | 34 |
| Ltac | 33 |
| Axiom | 31 |
| Record | 11 |
| Coercion | 3 |
| Function | 3 |
| CoInductive | 2 |
| Corollary | 1 |
| Fact | 1 |
| Hypothesis | 1 |
| CoFixpoint | 1 |
between : nat -> nat -> nat -> Prop
:=
| between_n : forall n m, le n m -> between n (S n) (S (S m))
| between_S : forall n m o, between n m o -> between n (S m) (S o).
between | benchmarks/BST/BST.vEach declaration is split into a statement (signature/claim) and a proof (body) that are disjoint
and together form the complete declaration, for proof modeling, autoformalization, retrieval, and
dependency analysis via deps.
@misc{coq_quickchick_dataset,
title = {Coq-QuickChick},
author = {Norton, Charles},
year = {2026},
note = {Extracted from https://github.com/QuickChick/QuickChick, commit 5a6c291b11e9},
url = {https://huggingface.co/datasets/phanerozoic/Coq-QuickChick}
}