Skip to content

Commit

Permalink
AnnihilatorOfPower( o, D ) -> Annihilator( o, D )
Browse files Browse the repository at this point in the history
  • Loading branch information
mohamed-barakat committed Sep 19, 2017
1 parent d9b1605 commit 176ce5b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion PackageInfo.g
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Subtitle := "A homalg based package for D-modules",
## See '?Extending: Version Numbers' in GAP help for an explanation
## of valid version numbers. For an automatic package distribution update
## you must provide a new version number even after small changes.
Version := "2017.05.10",
Version := "2017.09.17",
## Please adjust also the VERSION file in the package directory when
## changing this.

Expand Down
2 changes: 1 addition & 1 deletion gap/D-Modules.gd
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ DeclareOperation( "AnnihilatorOfPower",
DeclareOperation( "AnnihilatorOfPower",
[ IsInt, IsDivisor, IsObject ] );

DeclareOperation( "AnnihilatorOfPower",
DeclareOperation( "Annihilator",
[ IsInt, IsDivisor ] );

DeclareOperation( "OrderOfFirstEquality",
Expand Down
4 changes: 2 additions & 2 deletions gap/D-Modules.gi
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ InstallMethod( AnnihilatorOfPower,
end );

##
InstallMethod( AnnihilatorOfPower,
InstallMethod( Annihilator,
"for an integer, a divisor",
[ IsInt, IsDivisorRep ],

Expand Down Expand Up @@ -471,7 +471,7 @@ InstallMethod( PrimaryIdealOfGrAnnOfPowerAtTheOrigin,
function( o, D )
local anno, granno, R, m, pr;

anno := AnnihilatorOfPower( o, D );
anno := Annihilator( o, D );

granno := AssociatedOrderGradedModule( anno );

Expand Down

0 comments on commit 176ce5b

Please sign in to comment.