Skip to content

Commit ba91045

Browse files
renamed CheckConstructivenessOfCategory -> MissingOperationsForConstructivenessOfCategory
as a more suggestive name for CheckConstructivenessOfCategory
1 parent 84dd0e6 commit ba91045

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

CAP/PackageInfo.g

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ SetPackageInfo( rec(
1010

1111
PackageName := "CAP",
1212
Subtitle := "Categories, Algorithms, Programming",
13-
Version := "2023.12-10",
13+
Version := "2023.12-11",
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

CAP/gap/CAP.gd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -577,7 +577,7 @@ DeclareOperation( "CanCompute",
577577
#! If $s$ is not a categorical property, an error is raised.
578578
#! @Returns a list
579579
#! @Arguments C,s
580-
DeclareOperation( "CheckConstructivenessOfCategory",
580+
DeclareOperation( "MissingOperationsForConstructivenessOfCategory",
581581
[ IsCapCategory, IsString ] );
582582

583583
#############################################

CAP/gap/CAP.gi

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -582,7 +582,7 @@ InstallMethod( CanCompute,
582582
end );
583583

584584
##
585-
InstallMethod( CheckConstructivenessOfCategory,
585+
InstallMethod( MissingOperationsForConstructivenessOfCategory,
586586
[ IsCapCategory, IsString ],
587587

588588
function( category, string )
@@ -610,6 +610,8 @@ InstallMethod( CheckConstructivenessOfCategory,
610610

611611
end );
612612

613+
InstallDeprecatedAlias( "CheckConstructivenessOfCategory", "MissingOperationsForConstructivenessOfCategory", "2024.12.18" );
614+
613615
####################################
614616
##
615617
## Sanity checks

CAP/gap/PrintingFunctions.gi

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

4141
list_of_algorithmic_and_not_yet_algorithmic_properties := Intersection( list_of_mathematical_properties, list_of_potential_algorithmic_properties );
4242

43-
list_of_algorithmic_properties := Filtered( list_of_algorithmic_and_not_yet_algorithmic_properties, p -> IsEmpty( CheckConstructivenessOfCategory( category, p ) ) );
43+
list_of_algorithmic_properties := Filtered( list_of_algorithmic_and_not_yet_algorithmic_properties, p -> IsEmpty( MissingOperationsForConstructivenessOfCategory( category, p ) ) );
4444

4545
list_of_maximal_algorithmic_properties := MaximalPropertiesWithRegardToImplication( list_of_algorithmic_properties );
4646

CAP/help_for_CAP.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* CanCompute( category, string )
44
Returns true if the operation with name <string> is computable in <category>.
55

6-
* CheckConstructivenessOfCategory( category, string )
6+
* MissingOperationsForConstructivenessOfCategory( category, string )
77
Returns a list of names of basic operations which are not computable in <category> but
88
needed to have the categorical property <string> completely constructive.
99

0 commit comments

Comments
 (0)