Skip to content

Instantly share code, notes, and snippets.

View ruza-net's full-sized avatar

Jan Ruzicka ruza-net

  • Hettas
  • Czech Republic
View GitHub Profile
@kyoDralliam
kyoDralliam / acc_idc.v
Created March 18, 2022 12:44
Accessibility and extraction of infinite decending chains
From Equations Require Import Equations.
From Coq Require Import ssreflect.
Section Defs.
Context {A : Type} (R : A -> A -> Prop).
Definition entire := forall x, exists y, R y x.
Definition idc_from a0 :=
exists f : nat -> A, f 0 = a0 /\ forall n, R (f (S n)) (f n).