d8a616fa70
I made some major changes in the library. I wanted to wait with pushing until I had finished the formalization of the slice functor, but for some reason that is very hard to formalize, requiring a lot of casts and manipulation of casts. So I've not finished that yet. Changes: - in multiple files make more use of variables - move dependent congr_arg theorems to logic.cast and proof them using heq (which doesn't involve nested inductions and fewer casts). - prove some more theorems involving heq, e.g. hcongr_arg3 (which do not require piext) - in theorems where casts are used in the statement use eq.rec_on instead of eq.drec_on - in category split basic into basic, functor and natural_transformation - change the definition of functor to use fully bundled categories. @avigad: this means that the file semisimplicial.lean will also need changes (but I'm quite sure nothing major). You want to define the fully bundled category Delta, and use only fully bundled categories (type and ᵒᵖ are notations for the fully bundled Type_category and Opposite if you open namespace category.ops). If you want I can make the changes. - lots of minor changes
35 lines
921 B
Text
35 lines
921 B
Text
-- Copyright (c) 2014 Floris van Doorn. All rights reserved.
|
|
-- Released under Apache 2.0 license as described in the file LICENSE.
|
|
-- Author: Floris van Doorn
|
|
|
|
import .natural_transformation
|
|
import data.sigma
|
|
|
|
open eq eq.ops category functor natural_transformation
|
|
|
|
namespace limits
|
|
--representable functor
|
|
section
|
|
variables {I C : Category} {D : I ⇒ C}
|
|
|
|
definition constant_diagram (a : C) : I ⇒ C :=
|
|
mk (λ i, a)
|
|
(λ i j u, id)
|
|
(λ i, rfl)
|
|
(λ i j k v u, symm !id_compose)
|
|
|
|
definition cone := Σ(a : C), constant_diagram a ⟹ D
|
|
-- definition cone_category : category cone :=
|
|
-- mk (λa b, sorry)
|
|
-- (λ a b c g f, sorry)
|
|
-- (λ a, sorry)
|
|
-- (λ a b c d h g f, sorry)
|
|
-- (λ a b f, sorry)
|
|
-- (λ a b f, sorry)
|
|
|
|
end
|
|
end limits
|
|
-- functor.mk (λ a, sorry)
|
|
-- (λ a b f, sorry)
|
|
-- (λ a, sorry)
|
|
-- (λ a b c g f, sorry)
|