Skip to content

Commit

Permalink
Merge pull request #598 from mohamed-barakat/devel
Browse files Browse the repository at this point in the history
do not use 'method' = 'FractionFree' in LinearAlgebra[GaussianElimination]
  • Loading branch information
mohamed-barakat authored Nov 4, 2023
2 parents 228ca28 + 682a6af commit 01105c1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 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-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",

Expand Down
2 changes: 1 addition & 1 deletion RingsForHomalg/gap/MapleHomalgBasic.gi
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 01105c1

Please sign in to comment.