-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDualFunctor.v
27 lines (22 loc) · 1.01 KB
/
DualFunctor.v
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
Require Export Duals SmallCat.
Set Implicit Arguments.
Set Asymmetric Patterns.
Set Universe Polymorphism.
Section OppositeCategory.
Definition SmallOppositeFunctor : SpecializedFunctor SmallCat SmallCat.
refine (Build_SpecializedFunctor SmallCat SmallCat
(fun x => OppositeCategory x : SmallSpecializedCategory _)
(fun _ _ m => OppositeFunctor m)
_
_);
simpl; abstract functor_eq.
Defined.
Definition LocallySmallOppositeFunctor : SpecializedFunctor LocallySmallCat LocallySmallCat.
refine (Build_SpecializedFunctor LocallySmallCat LocallySmallCat
(fun x => OppositeCategory x : LocallySmallSpecializedCategory _)
(fun _ _ m => OppositeFunctor m)
_
_);
simpl; abstract functor_eq.
Defined.
End OppositeCategory.