Skip to content

Commit

Permalink
fixed CoefficientsOfUnreducedNumeratorOfHilbertPoincareSeries
Browse files Browse the repository at this point in the history
following suggestion in Singular/Singular#1227 (comment)
  • Loading branch information
mohamed-barakat committed Jun 20, 2024
1 parent d57aa10 commit 5c1193c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion RingsForHomalg/PackageInfo.g
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ SetPackageInfo( rec(

PackageName := "RingsForHomalg",
Subtitle := "Dictionaries of external rings",
Version := "2023.11-02",
Version := "2024.06-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: 2 additions & 2 deletions RingsForHomalg/gap/SingularTools.gi
Original file line number Diff line number Diff line change
Expand Up @@ -576,9 +576,9 @@ BindGlobal( "CommonHomalgTableForSingularTools",
Error( "Singular (<= 3-1-3) does not handle nontrivial free direct summands correctly\n" );
fi;
## the only case of a free direct summand we allowed to send to Singular (<= 3-1-3)
hilb := homalgSendBlocking( [ "hilb(std(", mat, "),1)" ], "need_output", "HilbertPoincareSeries" );
hilb := homalgSendBlocking( [ "string(hilb(std(", mat, "),1))" ], "need_output", "HilbertPoincareSeries" );
else
hilb := homalgSendBlocking( [ "hilb(", mat, ",1)" ], "need_output", "HilbertPoincareSeries" );
hilb := homalgSendBlocking( [ "string(hilb(", mat, ",1))" ], "need_output", "HilbertPoincareSeries" );
fi;

hilb := StringToIntList( hilb );
Expand Down

0 comments on commit 5c1193c

Please sign in to comment.