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

Remove obsolete reevaluation of derivation weight lists #592

Merged
merged 1 commit into from
Oct 9, 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
2 changes: 1 addition & 1 deletion Algebroids/PackageInfo.g
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ SetPackageInfo( rec(

PackageName := "Algebroids",
Subtitle := "Algebroids and bialgebroids as preadditive categories generated by enhanced quivers",
Version := "2024.09-04",
Version := "2024.10-01",
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
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,6 @@ BindGlobal( "LINEAR_CLOSURE_OF_PATH_CATEGORIES_OR_THEIR_QUOTIENTS",
end );

SetDefiningTripleOfUnderlyingQuiver( kC, DefiningTripleOfUnderlyingQuiver( C ) );
## this is a hotfix: delete as soon as we install all derivations at once in Finalize instead of the step-by-step addition of derivations in the Add-functions.
Reevaluate( kC!.derivations_weight_list );

if CanCompute( C, "MorphismsOfExternalHom" ) then

Expand Down
2 changes: 1 addition & 1 deletion InternalModules/PackageInfo.g
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ SetPackageInfo( rec(

PackageName := "InternalModules",
Subtitle := "Modules over internal algebras",
Version := "2024.09-02",
Version := "2024.10-01",

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
4 changes: 0 additions & 4 deletions InternalModules/gap/EModules.gi
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,6 @@ InstallMethod( CategoryOfLeftEModules,

SetIsAbelianCategory( EVMod, true );

Reevaluate( EVMod!.derivations_weight_list );

Finalize( EVMod );

SetCategoryOfLeftEModules( V, EVMod );
Expand Down Expand Up @@ -70,8 +68,6 @@ InstallMethod( CategoryOfRightEModules,

SetIsAbelianCategory( ModEV, true );

Reevaluate( ModEV!.derivations_weight_list );

Finalize( ModEV );

SetCategoryOfRightEModules( V, ModEV );
Expand Down
4 changes: 0 additions & 4 deletions InternalModules/gap/SModules.gi
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,6 @@ InstallMethod( CategoryOfLeftSModules,

SetIsAbelianCategory( SVMod, true );

Reevaluate( SVMod!.derivations_weight_list );

Finalize( SVMod );

SetCategoryOfLeftSModules( V, SVMod );
Expand Down Expand Up @@ -70,8 +68,6 @@ InstallMethod( CategoryOfRightSModules,

SetIsAbelianCategory( ModSV, true );

Reevaluate( ModSV!.derivations_weight_list );

Finalize( ModSV );

SetCategoryOfRightSModules( V, ModSV );
Expand Down
Loading