chore(library/hott) cleanup
This commit is contained in:
parent
f1cc0c4bd8
commit
b8ec1a1649
2 changed files with 8 additions and 8 deletions
|
@ -10,13 +10,13 @@ open path
|
||||||
-- Funext
|
-- Funext
|
||||||
-- ------
|
-- ------
|
||||||
|
|
||||||
axiom funext {A : Type} {P : A → Type} (f g : Π x : A, P x) : IsEquiv (@apD10 A P f g)
|
axiom funext {A : Type} {P : A → Type} (f g : Πx, P x) : IsEquiv (@apD10 A P f g)
|
||||||
|
|
||||||
theorem funext_instance [instance] {A : Type} {P : A → Type} (f g : Π x : A, P x) :
|
theorem funext_instance [instance] {A : Type} {P : A → Type} (f g : Πx, P x) :
|
||||||
IsEquiv (@apD10 A P f g) :=
|
IsEquiv (@apD10 A P f g) :=
|
||||||
@funext A P f g
|
@funext A P f g
|
||||||
|
|
||||||
definition path_forall {A : Type} {P : A → Type} (f g : Π x : A, P x) : f ∼ g → f ≈ g :=
|
definition path_forall {A : Type} {P : A → Type} (f g : Πx, P x) : f ∼ g → f ≈ g :=
|
||||||
IsEquiv.inv !apD10
|
IsEquiv.inv !apD10
|
||||||
|
|
||||||
definition path_forall2 {A B : Type} {P : A → B → Type} (f g : Πx y, P x y) :
|
definition path_forall2 {A B : Type} {P : A → B → Type} (f g : Πx y, P x y) :
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
-- Copyright (c) 2014 Microsoft Corporation. All rights reserved.
|
-- Copyright (c) 2014 Jakob von Raumer. All rights reserved.
|
||||||
-- Released under Apache 2.0 license as described in the file LICENSE.
|
-- Released under Apache 2.0 license as described in the file LICENSE.
|
||||||
-- Author: Jeremy Avigad, Jakob von Raumer
|
-- Author: Jakob von Raumer
|
||||||
-- Ported from Coq HoTT
|
-- Ported from Coq HoTT
|
||||||
import hott.path hott.equiv
|
import hott.path hott.equiv
|
||||||
open path Equiv
|
open path Equiv
|
||||||
|
|
Loading…
Add table
Reference in a new issue