Skip to content
Open
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 MatricesForHomalg/PackageInfo.g
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ SetPackageInfo( rec(

PackageName := "MatricesForHomalg",
Subtitle := "Matrices for the homalg project",
Version := "2025.09-01",
Version := "2025.09-02",
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
11 changes: 11 additions & 0 deletions MatricesForHomalg/gap/Julia.gi
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,17 @@ InstallOtherMethod( \[\],

end );

##
InstallOtherMethod( DiagMat,
"for a list of homalg matrices",
[ IsJuliaObject ],

function( list )

return DiagMat( ConvertJuliaToGAP( list ) );

end );

##
InstallOtherMethod( CertainRows,
"for homalg matrices",
Expand Down