forked from homalg-project/CAP_project
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSymmetricCartesianCategoriesDerivedMethods.gi
More file actions
60 lines (42 loc) · 2.13 KB
/
Copy pathSymmetricCartesianCategoriesDerivedMethods.gi
File metadata and controls
60 lines (42 loc) · 2.13 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# SPDX-License-Identifier: GPL-2.0-or-later
# CartesianCategories: Cartesian and cocartesian categories and various subdoctrines
#
# Implementations
#
# THIS FILE WAS AUTOMATICALLY GENERATED
##
AddDerivationToCAP( CartesianBraiding,
"CartesianBraiding using CartesianBraidingInverse",
[ [ CartesianBraidingInverse, 1 ] ],
function( cat, object_1, object_2 )
return CartesianBraidingInverse( cat,
object_2, object_1 );
end : CategoryFilter := IsCartesianCategory );
##
AddDerivationToCAP( CartesianBraidingInverse,
"CartesianBraidingInverse using CartesianBraiding",
[ [ CartesianBraiding, 1 ] ],
function( cat, object_1, object_2 )
return CartesianBraiding( cat,
object_2, object_1 );
end : CategoryFilter := IsCartesianCategory );
##
AddDerivationToCAP( CartesianBraidingWithGivenDirectProducts,
"CartesianBraidingWithGivenDirectProducts using CartesianBraidingInverseWithGivenDirectProducts",
[ [ CartesianBraidingInverseWithGivenDirectProducts, 1 ] ],
function( cat, object_1_x_object_2, object_1, object_2, object_2_x_object_1 )
return CartesianBraidingInverseWithGivenDirectProducts( cat,
object_1_x_object_2,
object_2, object_1,
object_2_x_object_1 );
end : CategoryFilter := IsCartesianCategory );
##
AddDerivationToCAP( CartesianBraidingInverseWithGivenDirectProducts,
"CartesianBraidingInverseWithGivenDirectProducts using CartesianBraidingWithGivenDirectProducts",
[ [ CartesianBraidingWithGivenDirectProducts, 1 ] ],
function( cat, object_2_x_object_1, object_1, object_2, object_1_x_object_2 )
return CartesianBraidingWithGivenDirectProducts( cat,
object_2_x_object_1,
object_2, object_1,
object_1_x_object_2 );
end : CategoryFilter := IsCartesianCategory );