Skip to content

Commit 01e8e5b

Browse files
Merge pull request #1769 from mohamed-barakat/Typo
fixed typo in operation name
2 parents 2df53e2 + 010dc91 commit 01e8e5b

13 files changed

Lines changed: 35 additions & 35 deletions

AdditiveClosuresForCAP/PackageInfo.g

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ SetPackageInfo( rec(
1010

1111
PackageName := "AdditiveClosuresForCAP",
1212
Subtitle := "Additive closures for pre-abelian categories",
13-
Version := "2025.07-04",
13+
Version := "2025.07-05",
1414
Date := (function ( ) if IsBound( GAPInfo.SystemEnvironment.GAP_PKG_RELEASE_DATE ) then return GAPInfo.SystemEnvironment.GAP_PKG_RELEASE_DATE; else return Concatenation( ~.Version{[ 1 .. 4 ]}, "-", ~.Version{[ 6, 7 ]}, "-01" ); fi; end)( ),
1515
License := "GPL-2.0-or-later",
1616

@@ -133,7 +133,7 @@ Dependencies := rec(
133133
GAP := ">= 4.13.0",
134134
NeededOtherPackages := [ [ "CAP", ">= 2025.06-05" ],
135135
[ "GradedRingForHomalg", ">=2019.08.07" ],
136-
[ "MonoidalCategories", ">= 2025.07-02" ],
136+
[ "MonoidalCategories", ">= 2025.07-03" ],
137137
],
138138
SuggestedOtherPackages := [ ],
139139
ExternalConditions := [ ],

AdditiveClosuresForCAP/tst/ClosedAndCoclosedRows.tst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -404,11 +404,11 @@ false
404404
gap> braiding_c_d = braiding_inverse_c_d;
405405
false
406406

407-
gap> TestBraidingCompatability( rows, a, b, c );
407+
gap> TestBraidingCompatibility( rows, a, b, c );
408408
true
409-
gap> TestBraidingCompatability( rows, c, b, a );
409+
gap> TestBraidingCompatibility( rows, c, b, a );
410410
true
411-
gap> TestBraidingCompatability( rows, b, a, c );
411+
gap> TestBraidingCompatibility( rows, b, a, c );
412412
true
413413

414414
######################################################

CartesianCategories/PackageInfo.g

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ SetPackageInfo( rec(
1010

1111
PackageName := "CartesianCategories",
1212
Subtitle := "Cartesian and cocartesian categories and various subdoctrines",
13-
Version := "2025.07-02",
13+
Version := "2025.07-03",
1414
Date := ~.Version{[ 1 .. 10 ]},
1515
Date := (function ( ) if IsBound( GAPInfo.SystemEnvironment.GAP_PKG_RELEASE_DATE ) then return GAPInfo.SystemEnvironment.GAP_PKG_RELEASE_DATE; else return Concatenation( ~.Version{[ 1 .. 4 ]}, "-", ~.Version{[ 6, 7 ]}, "-01" ); fi; end)( ),
1616
License := "GPL-2.0-or-later",
@@ -99,7 +99,7 @@ Dependencies := rec(
9999
GAP := ">= 4.13.0",
100100
NeededOtherPackages := [
101101
[ "CAP", ">= 2025.03-04" ],
102-
[ "MonoidalCategories", ">= 2025.07-02" ],
102+
[ "MonoidalCategories", ">= 2025.07-03" ],
103103
],
104104
SuggestedOtherPackages := [ ],
105105
ExternalConditions := [ ],
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
The files of this package which include the line `THIS FILE WAS AUTOMATICALLY GENERATED` in their header have been autogenerated
22

3-
* from MonoidalCategories v2025.07-02
3+
* from MonoidalCategories v2025.07-03

CartesianCategories/gap/BraidedCartesianCategoriesTest.gd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
#! false otherwise.
2020
#! @Returns a boolean
2121
#! @Arguments cat, obj_1, obj_2, obj_3
22-
DeclareOperation( "TestCartesianBraidingCompatability",
22+
DeclareOperation( "TestCartesianBraidingCompatibility",
2323
[ IsCapCategory, IsCapCategoryObject, IsCapCategoryObject, IsCapCategoryObject ] );
2424

2525
#! @Description
@@ -29,7 +29,7 @@ DeclareOperation( "TestCartesianBraidingCompatability",
2929
#! for all triples of objects in $L$, otherwise false.
3030
#! @Returns a boolean
3131
#! @Arguments cat, L
32-
DeclareOperation( "TestCartesianBraidingCompatabilityForAllTriplesInList", [ IsCapCategory, IsList ] );
32+
DeclareOperation( "TestCartesianBraidingCompatibilityForAllTriplesInList", [ IsCapCategory, IsList ] );
3333

3434
#! @Description
3535
#! The arguments are

CartesianCategories/gap/BraidedCartesianCategoriesTest.gi

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99

1010
##
11-
InstallMethod( TestCartesianBraidingCompatability,
11+
InstallMethod( TestCartesianBraidingCompatibility,
1212
[ IsCapCategory, IsCapCategoryObject, IsCapCategoryObject, IsCapCategoryObject ],
1313

1414
function( cat, object_1, object_2, object_3 )
@@ -58,7 +58,7 @@ InstallMethod( TestCartesianBraidingCompatability,
5858
end );
5959

6060
##
61-
InstallMethod( TestCartesianBraidingCompatabilityForAllTriplesInList,
61+
InstallMethod( TestCartesianBraidingCompatibilityForAllTriplesInList,
6262
[ IsCapCategory, IsList ],
6363

6464
function( cat, object_list )
@@ -74,7 +74,7 @@ InstallMethod( TestCartesianBraidingCompatabilityForAllTriplesInList,
7474

7575
for c in list do
7676

77-
test := TestCartesianBraidingCompatability( cat, object_list[a], object_list[b], object_list[c] );
77+
test := TestCartesianBraidingCompatibility( cat, object_list[a], object_list[b], object_list[c] );
7878

7979
if not test then
8080

@@ -107,13 +107,13 @@ InstallGlobalFunction( "BraidedCartesianCategoriesTest",
107107

108108
if IsEmpty( MissingOperationsForConstructivenessOfCategory( cat, "IsCartesianCategory" ) ) then
109109

110-
Assert( 0, TestCartesianBraidingCompatability( cat, a, b, a ) );
110+
Assert( 0, TestCartesianBraidingCompatibility( cat, a, b, a ) );
111111

112112
fi;
113113

114114
if IsEmpty( MissingOperationsForConstructivenessOfCategory( opposite, "IsCartesianCategory" ) ) then
115115

116-
Assert( 0, TestCartesianBraidingCompatability( opposite, a_op, b_op, a_op ) );
116+
Assert( 0, TestCartesianBraidingCompatibility( opposite, a_op, b_op, a_op ) );
117117

118118
fi;
119119

CartesianCategories/gap/BraidedCocartesianCategoriesTest.gd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
#! false otherwise.
2020
#! @Returns a boolean
2121
#! @Arguments cat, obj_1, obj_2, obj_3
22-
DeclareOperation( "TestCocartesianBraidingCompatability",
22+
DeclareOperation( "TestCocartesianBraidingCompatibility",
2323
[ IsCapCategory, IsCapCategoryObject, IsCapCategoryObject, IsCapCategoryObject ] );
2424

2525
#! @Description
@@ -29,7 +29,7 @@ DeclareOperation( "TestCocartesianBraidingCompatability",
2929
#! for all triples of objects in $L$, otherwise false.
3030
#! @Returns a boolean
3131
#! @Arguments cat, L
32-
DeclareOperation( "TestCocartesianBraidingCompatabilityForAllTriplesInList", [ IsCapCategory, IsList ] );
32+
DeclareOperation( "TestCocartesianBraidingCompatibilityForAllTriplesInList", [ IsCapCategory, IsList ] );
3333

3434
#! @Description
3535
#! The arguments are

CartesianCategories/gap/BraidedCocartesianCategoriesTest.gi

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99

1010
##
11-
InstallMethod( TestCocartesianBraidingCompatability,
11+
InstallMethod( TestCocartesianBraidingCompatibility,
1212
[ IsCapCategory, IsCapCategoryObject, IsCapCategoryObject, IsCapCategoryObject ],
1313

1414
function( cat, object_1, object_2, object_3 )
@@ -58,7 +58,7 @@ InstallMethod( TestCocartesianBraidingCompatability,
5858
end );
5959

6060
##
61-
InstallMethod( TestCocartesianBraidingCompatabilityForAllTriplesInList,
61+
InstallMethod( TestCocartesianBraidingCompatibilityForAllTriplesInList,
6262
[ IsCapCategory, IsList ],
6363

6464
function( cat, object_list )
@@ -74,7 +74,7 @@ InstallMethod( TestCocartesianBraidingCompatabilityForAllTriplesInList,
7474

7575
for c in list do
7676

77-
test := TestCocartesianBraidingCompatability( cat, object_list[a], object_list[b], object_list[c] );
77+
test := TestCocartesianBraidingCompatibility( cat, object_list[a], object_list[b], object_list[c] );
7878

7979
if not test then
8080

@@ -107,13 +107,13 @@ InstallGlobalFunction( "BraidedCocartesianCategoriesTest",
107107

108108
if IsEmpty( MissingOperationsForConstructivenessOfCategory( cat, "IsCocartesianCategory" ) ) then
109109

110-
Assert( 0, TestCocartesianBraidingCompatability( cat, a, b, a ) );
110+
Assert( 0, TestCocartesianBraidingCompatibility( cat, a, b, a ) );
111111

112112
fi;
113113

114114
if IsEmpty( MissingOperationsForConstructivenessOfCategory( opposite, "IsCocartesianCategory" ) ) then
115115

116-
Assert( 0, TestCocartesianBraidingCompatability( opposite, a_op, b_op, a_op ) );
116+
Assert( 0, TestCocartesianBraidingCompatibility( opposite, a_op, b_op, a_op ) );
117117

118118
fi;
119119

LinearAlgebraForCAP/PackageInfo.g

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ SetPackageInfo( rec(
1010

1111
PackageName := "LinearAlgebraForCAP",
1212
Subtitle := "Category of Matrices over a Field for CAP",
13-
Version := "2025.07-02",
13+
Version := "2025.07-03",
1414
Date := (function ( ) if IsBound( GAPInfo.SystemEnvironment.GAP_PKG_RELEASE_DATE ) then return GAPInfo.SystemEnvironment.GAP_PKG_RELEASE_DATE; else return Concatenation( ~.Version{[ 1 .. 4 ]}, "-", ~.Version{[ 6, 7 ]}, "-01" ); fi; end)( ),
1515
License := "GPL-2.0-or-later",
1616

@@ -104,7 +104,7 @@ Dependencies := rec(
104104
[ "MatricesForHomalg", ">= 2023.01-01" ],
105105
[ "GaussForHomalg", ">= 2021.04-02" ],
106106
[ "CAP", ">= 2025.06-05" ],
107-
[ "MonoidalCategories", ">= 2025.07-02" ],
107+
[ "MonoidalCategories", ">= 2025.07-03" ],
108108
],
109109
ExternalConditions := [ ],
110110
),

LinearAlgebraForCAP/tst/ClosedAndCoclosedInMatrixCategory.tst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -404,11 +404,11 @@ false
404404
gap> braiding_c_d = braiding_inverse_c_d;
405405
false
406406

407-
gap> TestBraidingCompatability( mc, a, b, c );
407+
gap> TestBraidingCompatibility( mc, a, b, c );
408408
true
409-
gap> TestBraidingCompatability( mc, c, b, a );
409+
gap> TestBraidingCompatibility( mc, c, b, a );
410410
true
411-
gap> TestBraidingCompatability( mc, b, a, c );
411+
gap> TestBraidingCompatibility( mc, b, a, c );
412412
true
413413

414414
######################################################

0 commit comments

Comments
 (0)