Skip to content

Commit 1ce5b11

Browse files
Paolo Torrinigares
authored andcommitted
updated dependencies
1 parent 3564fd6 commit 1ce5b11

5 files changed

Lines changed: 13 additions & 3 deletions

File tree

theories/cat.v

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1199,6 +1199,11 @@ Notation pb s := (prepullback_isTerminal _ _ _ _ s).
11991199

12001200
Notation "P <=> Q" := ((P -> Q) * (Q -> P))%type (at level 70).
12011201

1202+
Notation "'sigma' x .. y , p" :=
1203+
(sigT (fun x => .. (sigT (fun y => p)) ..))
1204+
(at level 200, x binder, right associativity,
1205+
format "'[' 'sigma' '/ ' x .. y , '/ ' p ']'")
1206+
: cat_scope.
12021207

12031208
(**********************************************************************)
12041209

theories/encat.v

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,13 @@ Local Open Scope algebra_scope.
1313

1414
Local Open Scope cat_scope.
1515

16+
(*
1617
Notation "'sigma' x .. y , p" :=
1718
(sigT (fun x => .. (sigT (fun y => p)) ..))
1819
(at level 200, x binder, right associativity,
1920
format "'[' 'sigma' '/ ' x .. y , '/ ' p ']'")
2021
: type_scope.
21-
22+
*)
2223

2324
(*** DOUBLE CATEGORIES (REVISED) *)
2425

theories/encatD.v

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,13 @@ Local Open Scope algebra_scope.
1313

1414
Local Open Scope cat_scope.
1515

16+
(*
1617
Notation "'sigma' x .. y , p" :=
1718
(sigT (fun x => .. (sigT (fun y => p)) ..))
1819
(at level 200, x binder, right associativity,
1920
format "'[' 'sigma' '/ ' x .. y , '/ ' p ']'")
2021
: type_scope.
21-
22+
*)
2223

2324
(********************************************************************)
2425

theories/encatI.v

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,13 @@ Local Open Scope algebra_scope.
1313

1414
Local Open Scope cat_scope.
1515

16+
(*
1617
Notation "'sigma' x .. y , p" :=
1718
(sigT (fun x => .. (sigT (fun y => p)) ..))
1819
(at level 200, x binder, right associativity,
1920
format "'[' 'sigma' '/ ' x .. y , '/ ' p ']'")
2021
: type_scope.
22+
*)
2123

2224
(*** GENERALISED ENRICHED CATEGORIES *)
2325

theories/encatI0.v

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,13 @@ Local Open Scope algebra_scope.
1313

1414
Local Open Scope cat_scope.
1515

16+
(*
1617
Notation "'sigma' x .. y , p" :=
1718
(sigT (fun x => .. (sigT (fun y => p)) ..))
1819
(at level 200, x binder, right associativity,
1920
format "'[' 'sigma' '/ ' x .. y , '/ ' p ']'")
2021
: type_scope.
21-
22+
*)
2223

2324
(*** CATEGORIES WITH PULLBACKS *)
2425

0 commit comments

Comments
 (0)