diff --git a/RingsForHomalg/PackageInfo.g b/RingsForHomalg/PackageInfo.g index ebca0a0c7..5316841bf 100644 --- a/RingsForHomalg/PackageInfo.g +++ b/RingsForHomalg/PackageInfo.g @@ -11,7 +11,7 @@ SetPackageInfo( rec( PackageName := "RingsForHomalg", Subtitle := "Dictionaries of external rings", -Version := "2023.11-01", +Version := "2023.11-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", diff --git a/RingsForHomalg/gap/MapleHomalgBasic.gi b/RingsForHomalg/gap/MapleHomalgBasic.gi index 6ee5ded3b..43fd5d7f5 100644 --- a/RingsForHomalg/gap/MapleHomalgBasic.gi +++ b/RingsForHomalg/gap/MapleHomalgBasic.gi @@ -27,7 +27,7 @@ BindGlobal( "CommonHomalgTableForMapleHomalgBasic", N := HomalgVoidMatrix( "unknown_number_of_rows", NumberColumns( M ), R ); - homalgSendBlocking( [ N, " := ", R, "[-1][matrix](LinearAlgebra[GaussianElimination](Matrix(", M, "), 'method' = 'FractionFree'))" ], "need_command", "ReducedEchelonForm" ); + homalgSendBlocking( [ N, " := ", R, "[-1][matrix](LinearAlgebra[GaussianElimination](Matrix(", M, ")))" ], "need_command", "ReducedEchelonForm" ); return N;