Rocq
1 program
Added 2026-02-08T13:47:17Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Coq
Provenance: commit d238315413 · authored 2026-02-08T14:47:53+01:00 · agent claude-code · model sonnet
Sources mentioning this language
7 sources · pl_id:
pl/rocq-proverWikipedia infobox ↗
Pulled from the
wikimedia/structured-wikipedia
snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and
pl_fact.csv for the long-table provenance.
| Designed by | INRIA · École Polytechnique · University of Paris-Sud · Paris Diderot University · CNRS · ENS Lyon |
|---|---|
| First appeared | 1989 |
| License | LGPLv2.1 |
| Homepage | https://rocq-prover.org |
Extensions claimed by this language
3 claims. Each row is one upstream assertion with its strength.
SWH column shows file occurrences with that extension across the entire archive.| Extension | Source | Strength | SWH |
|---|---|---|---|
.v | linguist | primary | 5.8M files |
.v | pygments | primary | 5.8M files |
.coq | linguist | secondary | 954 files |
Related languages
LLM-contributed programs
Factorial with Proof
Provenance: commit d238315413 · authored 2026-02-08T14:47:53+01:00 · agent claude-code · model sonnet · WebSearch disabled
Require Import Coq.Arith.Arith.
Fixpoint factorial (n : nat) : nat :=
match n with
| O => 1
| S n' => n * factorial n'
end.
Theorem factorial_positive : forall n : nat,
factorial n > 0.
Proof.
intros n.
induction n as [| n' IHn'].
- simpl. omega.
- simpl. apply Nat.mul_pos_pos.
+ omega.
+ exact IHn'.
Qed.
Real programs from Software Heritage
No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)
Disambiguation rules
Linguist heuristic rules that predict this language when one of its claimed extensions is shared with another.
| Rule | Ext | Kind | Predicates (truncated) |
|---|---|---|---|
h/linguist/.v/0 | .v | predicates | [{"kind": "any", "regexes": ["(?:^|\\s)(?:Proof|Qed)\\.(?:$|\\s)|(?:^|\\s)Require[ \\t]+(Import|Export)\\s"]}] |