Mercurial > hg > Members > kono > Proof > category
annotate category-ex.agda @ 757:a4074765abf8
...
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Mon, 11 Dec 2017 15:58:52 +0900 |
parents | 3249aaddc405 |
children |
rev | line source |
---|---|
153 | 1 module category-ex where |
2 | |
3 open import Level | |
4 open import Category | |
5 postulate c₁ c₂ ℓ : Level | |
6 postulate A : Category c₁ c₂ ℓ | |
7 | |
8 postulate a b c : Obj A | |
9 postulate g : Hom A a b | |
10 postulate f : Hom A b c | |
11 | |
12 open Category.Category | |
13 | |
14 h = _o_ A f g | |
15 | |
16 i = A [ f o g ] | |
17 | |
18 |