Skip to content

Commit 7fb12a7

Browse files
renamed files by adding the suffix WithMorphismsGivenByList
1 parent 6fba610 commit 7fb12a7

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

examples/PrecompileCategoryOfSkeletalFinSets.g renamed to examples/PrecompileCategoryOfSkeletalFinSetsWithMorphismsGivenByLists.g

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ ReadPackage( "FinSetsForCAP", "gap/CompilerLogic.gi" );
1616

1717
category_constructor := {} -> CategoryOfSkeletalFinSets( );;
1818
given_arguments := [ ];;
19-
compiled_category_name := "CategoryOfSkeletalFinSetsPrecompiled";;
19+
compiled_category_name :=
20+
"CategoryOfSkeletalFinSetsWithMorphismsGivenByListsPrecompiled";;
2021
package_name := "FinSetsForCAP";;
2122
primitive_operations :=
2223
ListPrimitivelyInstalledOperationsOfCategory(
@@ -39,7 +40,7 @@ CapJitPrecompileCategoryAndCompareResult(
3940
number_of_objectified_morphisms_in_data_structure_of_morphism := 1
4041
);;
4142

42-
CategoryOfSkeletalFinSetsPrecompiled( );
43+
CategoryOfSkeletalFinSetsWithMorphismsGivenByListsPrecompiled( );
4344
#! SkeletalFinSets
4445

4546
cat := CategoryOfSkeletalFinSets( );

gap/SkeletalFinSets.gi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ InstallMethod( CategoryOfSkeletalFinSets,
4040

4141
if ValueOption( "no_precompiled_code" ) <> true then
4242

43-
ADD_FUNCTIONS_FOR_CategoryOfSkeletalFinSetsPrecompiled( cat );
43+
ADD_FUNCTIONS_FOR_CategoryOfSkeletalFinSetsWithMorphismsGivenByListsPrecompiled( cat );
4444

4545
fi;
4646

gap/precompiled_categories/CategoryOfSkeletalFinSetsPrecompiled.gi renamed to gap/precompiled_categories/CategoryOfSkeletalFinSetsWithMorphismsGivenByListsPrecompiled.gi

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# Implementations
55
#
6-
BindGlobal( "ADD_FUNCTIONS_FOR_CategoryOfSkeletalFinSetsPrecompiled", function ( cat )
6+
BindGlobal( "ADD_FUNCTIONS_FOR_CategoryOfSkeletalFinSetsWithMorphismsGivenByListsPrecompiled", function ( cat )
77

88
##
99
AddCartesianBraidingInverseWithGivenDirectProducts( cat,
@@ -959,7 +959,7 @@ end
959959

960960
end );
961961

962-
BindGlobal( "CategoryOfSkeletalFinSetsPrecompiled", function ( )
962+
BindGlobal( "CategoryOfSkeletalFinSetsWithMorphismsGivenByListsPrecompiled", function ( )
963963
local category_constructor, cat;
964964

965965
category_constructor :=
@@ -973,7 +973,7 @@ end;
973973

974974
cat := category_constructor( : FinalizeCategory := false, no_precompiled_code := true );
975975

976-
ADD_FUNCTIONS_FOR_CategoryOfSkeletalFinSetsPrecompiled( cat );
976+
ADD_FUNCTIONS_FOR_CategoryOfSkeletalFinSetsWithMorphismsGivenByListsPrecompiled( cat );
977977

978978
Finalize( cat );
979979

read.g

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
ReadPackage( "FinSetsForCAP", "gap/Tools.gi" );
88

9-
ReadPackage( "FinSetsForCAP", "gap/precompiled_categories/CategoryOfSkeletalFinSetsPrecompiled.gi" );
9+
ReadPackage( "FinSetsForCAP", "gap/precompiled_categories/CategoryOfSkeletalFinSetsWithMorphismsGivenByListsPrecompiled.gi" );
1010

1111
ReadPackage( "FinSetsForCAP", "gap/FinSets.gi" );
1212

0 commit comments

Comments
 (0)