From 682a6af82f6c7b1b9dc024df5e4ca8782382b972 Mon Sep 17 00:00:00 2001 From: Mohamed Barakat Date: Sat, 4 Nov 2023 15:15:57 +0100 Subject: [PATCH] do not use 'method' = 'FractionFree' in LinearAlgebra[GaussianElimination] --- RingsForHomalg/PackageInfo.g | 2 +- RingsForHomalg/gap/MapleHomalgBasic.gi | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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;