Skip to content

Commit 682a6af

Browse files
do not use 'method' = 'FractionFree' in LinearAlgebra[GaussianElimination]
1 parent 228ca28 commit 682a6af

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

RingsForHomalg/PackageInfo.g

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ SetPackageInfo( rec(
1111

1212
PackageName := "RingsForHomalg",
1313
Subtitle := "Dictionaries of external rings",
14-
Version := "2023.11-01",
14+
Version := "2023.11-02",
1515
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)( ),
1616
License := "GPL-2.0-or-later",
1717

RingsForHomalg/gap/MapleHomalgBasic.gi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ BindGlobal( "CommonHomalgTableForMapleHomalgBasic",
2727

2828
N := HomalgVoidMatrix( "unknown_number_of_rows", NumberColumns( M ), R );
2929

30-
homalgSendBlocking( [ N, " := ", R, "[-1][matrix](LinearAlgebra[GaussianElimination](Matrix(", M, "), 'method' = 'FractionFree'))" ], "need_command", "ReducedEchelonForm" );
30+
homalgSendBlocking( [ N, " := ", R, "[-1][matrix](LinearAlgebra[GaussianElimination](Matrix(", M, ")))" ], "need_command", "ReducedEchelonForm" );
3131

3232
return N;
3333

0 commit comments

Comments
 (0)