Last active
May 20, 2023 19:07
-
-
Save AlecsFerra/28647b70629aaf9f6143e1237448e61d to your computer and use it in GitHub Desktop.
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
module AxiomK where | |
open import Relation.Binary.PropositionalEquality using (_≡_) | |
open _≡_ | |
-- All the equality proofs are the same ⁾ | |
-- Unless we use the `--without-K` option ⁾ | |
same-≡ : ∀ {l} {A : Set l} {a b : A} → (p₁ p₂ : a ≡ b) → p₁ ≡ p₂ | |
same-≡ refl refl = refl |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment