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.
Declarations from cubicaltt, an experimental cubical type theory.
9baa6f2491cc61dbd4fd81d58323c04100381451| 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 |
|---|---|
| def | 1,829 |
| data | 44 |
| hdata | 1 |
propisAssociative (M : U) (sM : set M) (op : M -> M -> M)
: prop (isAssociative M op)
= let
B (a b c : M) : U
= Path M (op a (op b c)) (op (op a b) c)
h (a b c : M) : prop (B a b c)
= sM (op a (op b c)) (op (op a b) c)
in propPi3 M B h
propisAssociative | examples/algstruct.cttEach 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{cubicaltt_dataset,
title = {cubicaltt},
author = {Norton, Charles},
year = {2026},
note = {Extracted from https://github.com/mortberg/cubicaltt, commit 9baa6f2491cc},
url = {https://huggingface.co/datasets/phanerozoic/cubicaltt}
}