Mercurial > hg > Members > kono > Proof > category
comparison category-ex.agda @ 153:3249aaddc405
sync
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Sat, 17 Aug 2013 21:09:34 +0900 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
152:5435469c6cf0 | 153:3249aaddc405 |
---|---|
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 |