lean2/hott/init/default.hlean

26 lines
911 B
Text
Raw Normal View History

/-
Copyright (c) 2014 Microsoft Corporation. All rights reserved.
Released under Apache 2.0 license as described in the file LICENSE.
2014-12-16 20:10:12 +00:00
Authors: Leonardo de Moura, Jakob von Raumer
-/
prelude
import init.datatypes init.reserved_notation init.tactic init.logic
2014-12-12 18:17:50 +00:00
import init.bool init.num init.priority init.relation init.wf
import init.types
import init.trunc init.path init.equiv init.util
import init.ua init.funext
import init.hedberg init.nat init.hit init.pathover
2015-05-02 21:17:50 +00:00
namespace core
export bool empty unit sum
export sigma (hiding pr1 pr2)
2015-05-02 21:17:50 +00:00
export [notations] prod
export [notations] nat
export eq (idp idpath concat inverse transport ap ap10 cast tr_inv homotopy ap11 apd refl)
2015-05-02 21:17:50 +00:00
export [declarations] function
export equiv (to_inv to_right_inv to_left_inv)
export is_equiv (inv right_inv left_inv adjointify)
export [abbreviations] [declarations] is_trunc (trunctype hprop.mk hset.mk)
2015-05-02 21:17:50 +00:00
end core