This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Require Import Coq.Logic.JMeq. | |
Definition JMeq_eq := forall (A : Type) (x y : A), JMeq x y -> x = y. | |
Section Eq_Facts. | |
Variable A : Type. | |
Definition K := forall (x : A) (P : x = x -> Prop), P eq_refl -> forall (eq : x = x), P eq. | |
Definition URIP := forall (x : A) (eq : x = x), eq = eq_refl. |