2014-08-12 00:35:25 +00:00
|
|
|
-- Copyright (c) 2014 Microsoft Corporation. All rights reserved.
|
|
|
|
-- Released under Apache 2.0 license as described in the file LICENSE.
|
|
|
|
-- Author: Jeremy Avigad
|
|
|
|
-- Ported from Coq HoTT
|
|
|
|
|
|
|
|
import .path
|
|
|
|
|
|
|
|
|
|
|
|
-- Truncation levels
|
|
|
|
-- -----------------
|
|
|
|
|
|
|
|
inductive Contr (A : Type) : Type :=
|
2014-08-22 22:46:10 +00:00
|
|
|
Contr_mk : Π
|
2014-08-12 00:35:25 +00:00
|
|
|
(center : A)
|
|
|
|
(contr : Πy : A, center ≈ y),
|
|
|
|
Contr A
|
|
|
|
|
|
|
|
definition center {A : Type} (C : Contr A) : A := Contr_rec (λcenter contr, center) C
|
|
|
|
|
|
|
|
definition contr {A : Type} (C : Contr A) : Πy : A, center C ≈ y :=
|
|
|
|
Contr_rec (λcenter contr, contr) C
|
|
|
|
|
|
|
|
inductive trunc_index : Type :=
|
2014-08-22 22:46:10 +00:00
|
|
|
minus_two : trunc_index,
|
|
|
|
trunc_S : trunc_index → trunc_index
|
2014-08-12 00:35:25 +00:00
|
|
|
|
|
|
|
-- TODO: add coercions to / from nat
|
|
|
|
|
|
|
|
-- TODO: note in the Coq version, there is an internal version
|
|
|
|
definition IsTrunc (n : trunc_index) : Type → Type :=
|
|
|
|
trunc_index_rec (λA, Contr A) (λn trunc_n A, (Π(x y : A), trunc_n (x ≈ y))) n
|
|
|
|
|
|
|
|
-- TODO: in the Coq version, this is notation
|
|
|
|
abbreviation minus_one := trunc_S minus_two
|
|
|
|
abbreviation IsHProp := IsTrunc minus_one
|
|
|
|
abbreviation IsHSet := IsTrunc (trunc_S minus_one)
|
|
|
|
|
|
|
|
prefix `!`:75 := center
|