Skip to content

Instantly share code, notes, and snippets.

@chdoc
chdoc / arc.v
Created August 19, 2020 13:10
Lemmas on subseq, next, arc, findex etc.
Require Import Setoid Morphisms.
From mathcomp Require Import all_ssreflect.
Set Implicit Arguments.
Unset Strict Implicit.
Unset Printing Implicit Defensive.
Lemma iter_id (T : Type) n : @iter T n id =1 id.
Proof. by elim: n. Qed.