Skip to content

Commit 56d7364

Browse files
Update to CartesianCategories v2025.05-02
1 parent 5c7c6a6 commit 56d7364

File tree

3 files changed

+23
-23
lines changed

3 files changed

+23
-23
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors = [
55
"Tom Kuhmichel <tom.kuhmichel@student.uni-siegen.de>",
66
"Fabian Zickgraf <f.zickgraf@dashdos.com>",
77
]
8-
version = "0.3.1"
8+
version = "0.3.2"
99

1010
[deps]
1111
CAP = "d64df2ee-d2bb-46f4-8cbc-f03bb858f8cb"

src/gap/CartesianCategories_extra.gi.autogen.jl

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -22,86 +22,86 @@
2222

2323
return TerminalObject( cat );
2424

25-
end );
25+
end, OperationWeight( cat, "TerminalObject" ) );
2626

2727
##
2828
AddTensorProductOnObjects( cat,
2929
function( cat, a, b )
3030

3131
return DirectProduct( cat, [ a, b ] );
3232

33-
end );
33+
end, OperationWeight( cat, "DirectProduct" ) );
3434

3535
##
3636
AddTensorProductOnMorphismsWithGivenTensorProducts( cat,
3737
function( cat, source, mor1, mor2, target )
3838

3939
return DirectProductOnMorphismsWithGivenDirectProducts( cat, source, mor1, mor2, target );
4040

41-
end );
41+
end, OperationWeight( cat, "DirectProductOnMorphismsWithGivenDirectProducts" ) );
4242

4343
##
4444
AddLeftUnitorWithGivenTensorProduct( cat,
4545
function( cat, a, source )
4646

4747
return CartesianLeftUnitorWithGivenDirectProduct( cat, a, source );
4848

49-
end );
49+
end, OperationWeight( cat, "CartesianLeftUnitorWithGivenDirectProduct" ) );
5050

5151
##
5252
AddLeftUnitorInverseWithGivenTensorProduct( cat,
5353
function( cat, a, target )
5454

5555
return CartesianLeftUnitorInverseWithGivenDirectProduct( cat, a, target );
5656

57-
end );
57+
end, OperationWeight( cat, "CartesianLeftUnitorInverseWithGivenDirectProduct" ) );
5858

5959
##
6060
AddRightUnitorWithGivenTensorProduct( cat,
6161
function( cat, a, source )
6262

6363
return CartesianRightUnitorWithGivenDirectProduct( cat, a, source );
6464

65-
end );
65+
end, OperationWeight( cat, "CartesianRightUnitorWithGivenDirectProduct" ) );
6666

6767
##
6868
AddRightUnitorInverseWithGivenTensorProduct( cat,
6969
function( cat, a, target )
7070

7171
return CartesianRightUnitorInverseWithGivenDirectProduct( cat, a, target );
7272

73-
end );
73+
end, OperationWeight( cat, "CartesianRightUnitorInverseWithGivenDirectProduct" ) );
7474

7575
##
7676
AddAssociatorLeftToRightWithGivenTensorProducts( cat,
7777
function( cat, source, a, b, c, target )
7878

7979
return CartesianAssociatorLeftToRightWithGivenDirectProducts( cat, source, a, b, c, target );
8080

81-
end );
81+
end, OperationWeight( cat, "CartesianAssociatorLeftToRightWithGivenDirectProducts" ) );
8282

8383
##
8484
AddAssociatorRightToLeftWithGivenTensorProducts( cat,
8585
function( cat, source, a, b, c, target )
8686

8787
return CartesianAssociatorRightToLeftWithGivenDirectProducts( cat, source, a, b, c, target );
8888

89-
end );
89+
end, OperationWeight( cat, "CartesianAssociatorRightToLeftWithGivenDirectProducts" ) );
9090

9191
##
9292
AddBraidingWithGivenTensorProducts( cat,
9393
function( cat, source, a, b, target )
9494

9595
return CartesianBraidingWithGivenDirectProducts( cat, source, a, b, target );
9696

97-
end );
97+
end, OperationWeight( cat, "CartesianBraidingWithGivenDirectProducts" ) );
9898

9999
##
100100
AddBraidingInverseWithGivenTensorProducts( cat,
101101
function( cat, source, a, b, target )
102102

103103
return CartesianBraidingInverseWithGivenDirectProducts( cat, source, a, b, target );
104104

105-
end );
105+
end, OperationWeight( cat, "CartesianBraidingInverseWithGivenDirectProducts" ) );
106106

107107
end );

src/gap/CocartesianCategories_extra.gi.autogen.jl

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -22,86 +22,86 @@
2222

2323
return InitialObject( cat );
2424

25-
end );
25+
end, OperationWeight( cat, "InitialObject" ) );
2626

2727
##
2828
AddTensorProductOnObjects( cat,
2929
function( cat, a, b )
3030

3131
return Coproduct( cat, [ a, b ] );
3232

33-
end );
33+
end, OperationWeight( cat, "Coproduct" ) );
3434

3535
##
3636
AddTensorProductOnMorphismsWithGivenTensorProducts( cat,
3737
function( cat, source, mor1, mor2, target )
3838

3939
return CoproductOnMorphismsWithGivenCoproducts( cat, source, mor1, mor2, target );
4040

41-
end );
41+
end, OperationWeight( cat, "CoproductOnMorphismsWithGivenCoproducts" ) );
4242

4343
##
4444
AddLeftUnitorWithGivenTensorProduct( cat,
4545
function( cat, a, source )
4646

4747
return CocartesianLeftUnitorWithGivenCoproduct( cat, a, source );
4848

49-
end );
49+
end, OperationWeight( cat, "CocartesianLeftUnitorWithGivenCoproduct" ) );
5050

5151
##
5252
AddLeftUnitorInverseWithGivenTensorProduct( cat,
5353
function( cat, a, target )
5454

5555
return CocartesianLeftUnitorInverseWithGivenCoproduct( cat, a, target );
5656

57-
end );
57+
end, OperationWeight( cat, "CocartesianLeftUnitorInverseWithGivenCoproduct" ) );
5858

5959
##
6060
AddRightUnitorWithGivenTensorProduct( cat,
6161
function( cat, a, source )
6262

6363
return CocartesianRightUnitorWithGivenCoproduct( cat, a, source );
6464

65-
end );
65+
end, OperationWeight( cat, "CocartesianRightUnitorWithGivenCoproduct" ) );
6666

6767
##
6868
AddRightUnitorInverseWithGivenTensorProduct( cat,
6969
function( cat, a, target )
7070

7171
return CocartesianRightUnitorInverseWithGivenCoproduct( cat, a, target );
7272

73-
end );
73+
end, OperationWeight( cat, "CocartesianRightUnitorInverseWithGivenCoproduct" ) );
7474

7575
##
7676
AddAssociatorLeftToRightWithGivenTensorProducts( cat,
7777
function( cat, source, a, b, c, target )
7878

7979
return CocartesianAssociatorLeftToRightWithGivenCoproducts( cat, source, a, b, c, target );
8080

81-
end );
81+
end, OperationWeight( cat, "CocartesianAssociatorLeftToRightWithGivenCoproducts" ) );
8282

8383
##
8484
AddAssociatorRightToLeftWithGivenTensorProducts( cat,
8585
function( cat, source, a, b, c, target )
8686

8787
return CocartesianAssociatorRightToLeftWithGivenCoproducts( cat, source, a, b, c, target );
8888

89-
end );
89+
end, OperationWeight( cat, "CocartesianAssociatorRightToLeftWithGivenCoproducts" ) );
9090

9191
##
9292
AddBraidingWithGivenTensorProducts( cat,
9393
function( cat, source, a, b, target )
9494

9595
return CocartesianBraidingWithGivenCoproducts( cat, source, a, b, target );
9696

97-
end );
97+
end, OperationWeight( cat, "CocartesianBraidingWithGivenCoproducts" ) );
9898

9999
##
100100
AddBraidingInverseWithGivenTensorProducts( cat,
101101
function( cat, source, a, b, target )
102102

103103
return CocartesianBraidingInverseWithGivenCoproducts( cat, source, a, b, target );
104104

105-
end );
105+
end, OperationWeight( cat, "CocartesianBraidingInverseWithGivenCoproducts" ) );
106106

107107
end );

0 commit comments

Comments
 (0)