Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adjust to CAP 2024.09-12 #578

Merged
merged 1 commit into from
Sep 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions FpCategories/PackageInfo.g
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ SetPackageInfo( rec(

PackageName := "FpCategories",
Subtitle := "Finitely presented categories by generating quivers and relations",
Version := "2024.09-02",
Version := "2024.09-03",
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)( ),
License := "GPL-2.0-or-later",

Expand Down Expand Up @@ -85,7 +85,7 @@ Dependencies := rec(
GAP := ">= 4.13.0",
NeededOtherPackages := [
[ "GAPDoc", ">= 1.5" ],
[ "CAP", ">= 2024.09-08" ],
[ "CAP", ">= 2024.09-12" ],
[ "ToolsForCategoricalTowers", ">= 2024.03-02" ],
[ "QuotientCategories", ">= 2024.02-01" ],
[ "FinSetsForCAP", ">= 2023.10-03" ],
Expand Down
4 changes: 2 additions & 2 deletions FpCategories/gap/ToolsMethodRecord.gi
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ SetOfGeneratingMorphismsOfCategory := rec(

CAP_INTERNAL_ENHANCE_NAME_RECORD( FP_CATEGORIES_METHOD_NAME_RECORD );

CAP_INTERNAL_GENERATE_DOCUMENTATION_FROM_METHOD_NAME_RECORD(
CAP_INTERNAL_GENERATE_DECLARATIONS_AND_INSTALLATIONS_FROM_METHOD_NAME_RECORD(
FP_CATEGORIES_METHOD_NAME_RECORD,
"FpCategories",
"Tools.autogen.gd",
"ToolsMethodRecord",
"Futher CAP operations",
"Add-methods"
);
Expand Down
31 changes: 31 additions & 0 deletions FpCategories/gap/ToolsMethodRecordInstallations.autogen.gi
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# SPDX-License-Identifier: GPL-2.0-or-later
# FpCategories: Finitely presented categories by generating quivers and relations
#
# Implementations
#
# THIS FILE IS AUTOMATICALLY GENERATED, SEE CAP_project/CAP/gap/MethodRecordTools.gi

## SetOfGeneratingMorphismsOfCategory
InstallMethod( AddSetOfGeneratingMorphismsOfCategory,
[ IsCapCategory, IsFunction ],

function( category, func )

AddCapOperation( "SetOfGeneratingMorphismsOfCategory", category, func, -1 );

end );

InstallMethod( AddSetOfGeneratingMorphismsOfCategory,
[ IsCapCategory, IsFunction, IsInt ],

FunctionWithNamedArguments(
[
[ "IsPrecompiledDerivation", false ],
],
function( CAP_NAMED_ARGUMENTS, category, func, weight )

AddCapOperation( "SetOfGeneratingMorphismsOfCategory", category, func, weight : IsPrecompiledDerivation := CAP_NAMED_ARGUMENTS.IsPrecompiledDerivation );

end
)
);
2 changes: 1 addition & 1 deletion FpCategories/init.g
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ ReadPackage( "FpCategories", "gap/PathCategories.gd");
ReadPackage( "FpCategories", "gap/GroebnerBasesForPathCategories.gd");
ReadPackage( "FpCategories", "gap/QuotientsOfPathCategories.gd");
ReadPackage( "FpCategories", "gap/Tools.gd");
ReadPackage( "FpCategories", "gap/Tools.autogen.gd");
ReadPackage( "FpCategories", "gap/ToolsMethodRecordDeclarations.autogen.gd");
1 change: 1 addition & 0 deletions FpCategories/read.g
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@ ReadPackage( "FpCategories", "gap/GroebnerBasesForPathCategories.gi");
ReadPackage( "FpCategories", "gap/QuotientsOfPathCategories.gi");
ReadPackage( "FpCategories", "gap/Tools.gi");
ReadPackage( "FpCategories", "gap/ToolsMethodRecord.gi");
ReadPackage( "FpCategories", "gap/ToolsMethodRecordInstallations.autogen.gi");
ReadPackage( "FpCategories", "gap/ToolsDerivedMethods.gi");
4 changes: 2 additions & 2 deletions FunctorCategories/PackageInfo.g
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ SetPackageInfo( rec(

PackageName := "FunctorCategories",
Subtitle := "Categories of functors",
Version := "2024.09-05",
Version := "2024.09-06",

Date := ~.Version{[ 1 .. 10 ]},
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)( ),
Expand Down Expand Up @@ -89,7 +89,7 @@ Dependencies := rec(
NeededOtherPackages := [
[ "GAPDoc", ">= 1.5" ],
[ "ToolsForHomalg", ">= 2022.12-01" ],
[ "CAP", ">= 2024.09-08" ],
[ "CAP", ">= 2024.09-12" ],
[ "MonoidalCategories", ">= 2024.06-02" ],
[ "CartesianCategories", ">= 2024.06-03" ],
[ "ToolsForCategoricalTowers", ">= 2024.03-02" ],
Expand Down
4 changes: 2 additions & 2 deletions FunctorCategories/gap/ToolsMethodRecord.gi
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ IsReflexive := rec(

CAP_INTERNAL_ENHANCE_NAME_RECORD( FUNCTOR_CATEGORIES_METHOD_NAME_RECORD );

CAP_INTERNAL_GENERATE_DOCUMENTATION_FROM_METHOD_NAME_RECORD(
CAP_INTERNAL_GENERATE_DECLARATIONS_AND_INSTALLATIONS_FROM_METHOD_NAME_RECORD(
FUNCTOR_CATEGORIES_METHOD_NAME_RECORD,
"FunctorCategories",
"Tools.autogen.gd",
"ToolsMethodRecord",
"Futher CAP operations",
"Add-methods"
);
Expand Down
31 changes: 31 additions & 0 deletions FunctorCategories/gap/ToolsMethodRecordInstallations.autogen.gi
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# SPDX-License-Identifier: GPL-2.0-or-later
# FunctorCategories: Categories of functors
#
# Implementations
#
# THIS FILE IS AUTOMATICALLY GENERATED, SEE CAP_project/CAP/gap/MethodRecordTools.gi

## IsReflexive
InstallMethod( AddIsReflexive,
[ IsCapCategory, IsFunction ],

function( category, func )

AddCapOperation( "IsReflexive", category, func, -1 );

end );

InstallMethod( AddIsReflexive,
[ IsCapCategory, IsFunction, IsInt ],

FunctionWithNamedArguments(
[
[ "IsPrecompiledDerivation", false ],
],
function( CAP_NAMED_ARGUMENTS, category, func, weight )

AddCapOperation( "IsReflexive", category, func, weight : IsPrecompiledDerivation := CAP_NAMED_ARGUMENTS.IsPrecompiledDerivation );

end
)
);
2 changes: 1 addition & 1 deletion FunctorCategories/init.g
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ ReadPackage( "FunctorCategories", "gap/DirectSumDecomposition.gd");
ReadPackage( "FunctorCategories", "gap/HomologicalMethods.gd");
ReadPackage( "FunctorCategories", "gap/QuotientsOfAlgebroidsFromDataTablesUsingPreSheaves.gd");
ReadPackage( "FunctorCategories", "gap/Tools.gd");
ReadPackage( "FunctorCategories", "gap/Tools.autogen.gd");
ReadPackage( "FunctorCategories", "gap/ToolsMethodRecordDeclarations.autogen.gd");
1 change: 1 addition & 0 deletions FunctorCategories/read.g
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ ReadPackage( "FunctorCategories", "gap/precompiled_categories/PreSheavesOfAlgebr

ReadPackage( "FunctorCategories", "gap/Tools.gi");
ReadPackage( "FunctorCategories", "gap/ToolsMethodRecord.gi");
ReadPackage( "FunctorCategories", "gap/ToolsMethodRecordInstallations.autogen.gi");
ReadPackage( "FunctorCategories", "gap/ToolsDerivedMethods.gi");

ReadPackage( "FunctorCategories", "gap/PreSheaves.gi");
Expand Down
4 changes: 2 additions & 2 deletions Locales/PackageInfo.g
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ SetPackageInfo( rec(

PackageName := "Locales",
Subtitle := "Locales, frames, coframes, meet semi-lattices of locally closed subsets, and Boolean algebras of constructible sets",
Version := "2024.09-06",
Version := "2024.09-07",
Date := ~.Version{[ 1 .. 10 ]},
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)( ),
License := "GPL-2.0-or-later",
Expand Down Expand Up @@ -102,7 +102,7 @@ Dependencies := rec(
NeededOtherPackages := [
[ "GAPDoc", ">= 1.5" ],
[ "ToolsForHomalg", ">= 2021.12-02" ],
[ "CAP", ">= 2024.09-08" ],
[ "CAP", ">= 2024.09-12" ],
[ "CompilerForCAP", ">= 2022.08-10" ],
[ "MonoidalCategories", ">= 2024.02-02" ],
[ "CartesianCategories", ">= 2024.02-02" ],
Expand Down
4 changes: 2 additions & 2 deletions Locales/gap/BooleanAlgebraMethodRecord.gi
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ MorphismToDoubleConegationWithGivenDoubleConegation := rec(

CAP_INTERNAL_ENHANCE_NAME_RECORD( BOOLEAN_ALGEBRA_METHOD_NAME_RECORD );

CAP_INTERNAL_GENERATE_DOCUMENTATION_FROM_METHOD_NAME_RECORD(
CAP_INTERNAL_GENERATE_DECLARATIONS_AND_INSTALLATIONS_FROM_METHOD_NAME_RECORD(
BOOLEAN_ALGEBRA_METHOD_NAME_RECORD,
"Locales",
"BooleanAlgebra.autogen.gd",
"BooleanAlgebraMethodRecord",
"Boolean algebras",
"Add-methods"
);
Expand Down
152 changes: 152 additions & 0 deletions Locales/gap/BooleanAlgebraMethodRecordInstallations.autogen.gi
Original file line number Diff line number Diff line change
@@ -0,0 +1,152 @@
# SPDX-License-Identifier: GPL-2.0-or-later
# Locales: Locales, frames, coframes, meet semi-lattices of locally closed subsets, and Boolean algebras of constructible sets
#
# Implementations
#
# THIS FILE IS AUTOMATICALLY GENERATED, SEE CAP_project/CAP/gap/MethodRecordTools.gi

## MorphismFromDoubleNegation
InstallMethod( AddMorphismFromDoubleNegation,
[ IsCapCategory, IsFunction ],

function( category, func )

AddCapOperation( "MorphismFromDoubleNegation", category, func, -1 );

Check warning on line 14 in Locales/gap/BooleanAlgebraMethodRecordInstallations.autogen.gi

View check run for this annotation

Codecov / codecov/patch

Locales/gap/BooleanAlgebraMethodRecordInstallations.autogen.gi#L14

Added line #L14 was not covered by tests

end );

InstallMethod( AddMorphismFromDoubleNegation,
[ IsCapCategory, IsFunction, IsInt ],

FunctionWithNamedArguments(
[
[ "IsPrecompiledDerivation", false ],
],
function( CAP_NAMED_ARGUMENTS, category, func, weight )

AddCapOperation( "MorphismFromDoubleNegation", category, func, weight : IsPrecompiledDerivation := CAP_NAMED_ARGUMENTS.IsPrecompiledDerivation );

Check warning on line 27 in Locales/gap/BooleanAlgebraMethodRecordInstallations.autogen.gi

View check run for this annotation

Codecov / codecov/patch

Locales/gap/BooleanAlgebraMethodRecordInstallations.autogen.gi#L27

Added line #L27 was not covered by tests

end
)
);

## MorphismFromDoubleNegationWithGivenDoubleNegation
InstallMethod( AddMorphismFromDoubleNegationWithGivenDoubleNegation,
[ IsCapCategory, IsFunction ],

function( category, func )

AddCapOperation( "MorphismFromDoubleNegationWithGivenDoubleNegation", category, func, -1 );

end );

InstallMethod( AddMorphismFromDoubleNegationWithGivenDoubleNegation,
[ IsCapCategory, IsFunction, IsInt ],

FunctionWithNamedArguments(
[
[ "IsPrecompiledDerivation", false ],
],
function( CAP_NAMED_ARGUMENTS, category, func, weight )

AddCapOperation( "MorphismFromDoubleNegationWithGivenDoubleNegation", category, func, weight : IsPrecompiledDerivation := CAP_NAMED_ARGUMENTS.IsPrecompiledDerivation );

end
)
);

AddDerivationToCAP( MorphismFromDoubleNegationWithGivenDoubleNegation,
"MorphismFromDoubleNegationWithGivenDoubleNegation by calling MorphismFromDoubleNegation with the WithGiven argument(s) dropped",
[
[ MorphismFromDoubleNegation, 1 ],
],
function( cat, a, s )

return MorphismFromDoubleNegation( cat, a );

Check warning on line 65 in Locales/gap/BooleanAlgebraMethodRecordInstallations.autogen.gi

View check run for this annotation

Codecov / codecov/patch

Locales/gap/BooleanAlgebraMethodRecordInstallations.autogen.gi#L65

Added line #L65 was not covered by tests

end : is_with_given_derivation := true );

AddDerivationToCAP( MorphismFromDoubleNegation,
"MorphismFromDoubleNegation by calling MorphismFromDoubleNegationWithGivenDoubleNegation with the WithGiven object(s)",
[
[ MorphismFromDoubleNegationWithGivenDoubleNegation, 1 ],
[ NegationOnObjects, 2 ],
],
function( cat, a )

return MorphismFromDoubleNegationWithGivenDoubleNegation( cat, a, NegationOnObjects( cat, NegationOnObjects( cat, a ) ) );

Check warning on line 77 in Locales/gap/BooleanAlgebraMethodRecordInstallations.autogen.gi

View check run for this annotation

Codecov / codecov/patch

Locales/gap/BooleanAlgebraMethodRecordInstallations.autogen.gi#L77

Added line #L77 was not covered by tests

end : is_with_given_derivation := true );

## MorphismToDoubleConegation
InstallMethod( AddMorphismToDoubleConegation,
[ IsCapCategory, IsFunction ],

function( category, func )

AddCapOperation( "MorphismToDoubleConegation", category, func, -1 );

Check warning on line 87 in Locales/gap/BooleanAlgebraMethodRecordInstallations.autogen.gi

View check run for this annotation

Codecov / codecov/patch

Locales/gap/BooleanAlgebraMethodRecordInstallations.autogen.gi#L87

Added line #L87 was not covered by tests

end );

InstallMethod( AddMorphismToDoubleConegation,
[ IsCapCategory, IsFunction, IsInt ],

FunctionWithNamedArguments(
[
[ "IsPrecompiledDerivation", false ],
],
function( CAP_NAMED_ARGUMENTS, category, func, weight )

AddCapOperation( "MorphismToDoubleConegation", category, func, weight : IsPrecompiledDerivation := CAP_NAMED_ARGUMENTS.IsPrecompiledDerivation );

Check warning on line 100 in Locales/gap/BooleanAlgebraMethodRecordInstallations.autogen.gi

View check run for this annotation

Codecov / codecov/patch

Locales/gap/BooleanAlgebraMethodRecordInstallations.autogen.gi#L100

Added line #L100 was not covered by tests

end
)
);

## MorphismToDoubleConegationWithGivenDoubleConegation
InstallMethod( AddMorphismToDoubleConegationWithGivenDoubleConegation,
[ IsCapCategory, IsFunction ],

function( category, func )

AddCapOperation( "MorphismToDoubleConegationWithGivenDoubleConegation", category, func, -1 );

end );

InstallMethod( AddMorphismToDoubleConegationWithGivenDoubleConegation,
[ IsCapCategory, IsFunction, IsInt ],

FunctionWithNamedArguments(
[
[ "IsPrecompiledDerivation", false ],
],
function( CAP_NAMED_ARGUMENTS, category, func, weight )

AddCapOperation( "MorphismToDoubleConegationWithGivenDoubleConegation", category, func, weight : IsPrecompiledDerivation := CAP_NAMED_ARGUMENTS.IsPrecompiledDerivation );

end
)
);

AddDerivationToCAP( MorphismToDoubleConegationWithGivenDoubleConegation,
"MorphismToDoubleConegationWithGivenDoubleConegation by calling MorphismToDoubleConegation with the WithGiven argument(s) dropped",
[
[ MorphismToDoubleConegation, 1 ],
],
function( cat, a, r )

return MorphismToDoubleConegation( cat, a );

Check warning on line 138 in Locales/gap/BooleanAlgebraMethodRecordInstallations.autogen.gi

View check run for this annotation

Codecov / codecov/patch

Locales/gap/BooleanAlgebraMethodRecordInstallations.autogen.gi#L138

Added line #L138 was not covered by tests

end : is_with_given_derivation := true );

AddDerivationToCAP( MorphismToDoubleConegation,
"MorphismToDoubleConegation by calling MorphismToDoubleConegationWithGivenDoubleConegation with the WithGiven object(s)",
[
[ MorphismToDoubleConegationWithGivenDoubleConegation, 1 ],
[ ConegationOnObjects, 2 ],
],
function( cat, a )

return MorphismToDoubleConegationWithGivenDoubleConegation( cat, a, ConegationOnObjects( cat, ConegationOnObjects( cat, a ) ) );

Check warning on line 150 in Locales/gap/BooleanAlgebraMethodRecordInstallations.autogen.gi

View check run for this annotation

Codecov / codecov/patch

Locales/gap/BooleanAlgebraMethodRecordInstallations.autogen.gi#L150

Added line #L150 was not covered by tests

end : is_with_given_derivation := true );
8 changes: 4 additions & 4 deletions Locales/gap/CoHeytingAlgebraMethodRecord.gi
Original file line number Diff line number Diff line change
Expand Up @@ -72,18 +72,18 @@ end );

CAP_INTERNAL_ENHANCE_NAME_RECORD( HEYTING_ALGEBRA_AND_COHEYTING_ALGEBRA_METHOD_NAME_RECORD );

CAP_INTERNAL_GENERATE_DOCUMENTATION_FROM_METHOD_NAME_RECORD(
CAP_INTERNAL_GENERATE_DECLARATIONS_AND_INSTALLATIONS_FROM_METHOD_NAME_RECORD(
HEYTING_ALGEBRA_METHOD_NAME_RECORD,
"Locales",
"HeytingAlgebra.autogen.gd",
"HeytingAlgebraMethodRecord",
"Heyting algebras",
"Add-methods"
);

CAP_INTERNAL_GENERATE_DOCUMENTATION_FROM_METHOD_NAME_RECORD(
CAP_INTERNAL_GENERATE_DECLARATIONS_AND_INSTALLATIONS_FROM_METHOD_NAME_RECORD(
COHEYTING_ALGEBRA_METHOD_NAME_RECORD,
"Locales",
"CoHeytingAlgebra.autogen.gd",
"CoHeytingAlgebraMethodRecord",
"Co-Heyting algebras",
"Add-methods"
);
Expand Down
Loading
Loading