Skip to content

Commit

Permalink
Merge pull request #19 from mohamed-barakat/ZZ
Browse files Browse the repository at this point in the history
StandardFF is now autoloaded by GAP and installs ZZ as a global variable
  • Loading branch information
mohamed-barakat authored Sep 16, 2023
2 parents d55e5d2 + 5d36ea3 commit ead798c
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion PackageInfo.g
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ SetPackageInfo( rec(

PackageName := "MatroidGeneration",
Subtitle := "Generate low-rank matroids",
Version := "2023.06-03",
Version := "2023.09-01",

Date := ~.Version{[ 1 .. 10 ]},
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)( ),
Expand Down
4 changes: 2 additions & 2 deletions examples/DivFreeNotIndFree.g
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ d := [ [ 1, 2, 3, 4, 5 ], [ 1, 6, 7, 8, 9 ],
matroid := MatroidByCoatomsNC( 14, 3, d );
#! <A matroid>
#homalgIOMode( "f" );
ZZ := HomalgRingOfIntegersInSingular( );
zz := HomalgRingOfIntegersInSingular( );
#! Z
SetInfoLevel( InfoWarning, 0 );
M := EquationsAndInequationsOfModuliSpaceOfMatroid( matroid, ZZ );;
M := EquationsAndInequationsOfModuliSpaceOfMatroid( matroid, zz );;
LoadPackage( "ZariskiFrames", ">= 2023.06-06" );
#! true
m := DistinguishedQuasiAffineSet( M );
Expand Down
4 changes: 2 additions & 2 deletions examples/Interesting13.g
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ db := AttachMatroidsDatabase();
d := db.matroids_split_public.document("118cb9babc77e406eb53043ac399bf851a012830");
matroid := MatroidByCoatomsNC( d );
#homalgIOMode( "f" );
ZZ := HomalgRingOfIntegersInSingular( );
zz := HomalgRingOfIntegersInSingular( );
SetInfoLevel( InfoWarning, 0 );
M := EquationsAndInequationsOfModuliSpaceOfMatroid( matroid, ZZ );
M := EquationsAndInequationsOfModuliSpaceOfMatroid( matroid, zz );
LoadPackage( "ZariskiFrames", ">= 2023.06-06" );
m := DistinguishedQuasiAffineSet( M );
e := EmbedInSmallerAmbientSpace( m );
Expand Down
4 changes: 2 additions & 2 deletions examples/ModuliSpace=Z-[2,3,5].g
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ db := AttachMatroidsDatabase();
d := db.matroids_split_public.document("34695a21a6c818bd99bc63bbf7ab162e2e9267cf");
matroid := MatroidByCoatomsNC( d );
#homalgIOMode( "f" );
ZZ := HomalgRingOfIntegersInSingular( );
zz := HomalgRingOfIntegersInSingular( );
SetInfoLevel( InfoWarning, 0 );
M := EquationsAndInequationsOfModuliSpaceOfMatroid( matroid, ZZ );
M := EquationsAndInequationsOfModuliSpaceOfMatroid( matroid, zz );
LoadPackage( "ZariskiFrames", ">= 2023.06-06" );
m := DistinguishedQuasiAffineSet( M );
e := EmbedInSmallerAmbientSpace( m );
Expand Down
4 changes: 2 additions & 2 deletions examples/Singleton14.g
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ db := AttachMatroidsDatabase();
d := db.matroids_split_public.document("ec7965794e6c0cc2766eeb2b8557fa149a3f8fc9");
matroid := MatroidByCoatomsNC( d );
#homalgIOMode( "f" );
ZZ := HomalgRingOfIntegersInSingular( );
zz := HomalgRingOfIntegersInSingular( );
SetInfoLevel( InfoWarning, 0 );
M := EquationsAndInequationsOfModuliSpaceOfMatroid( matroid, ZZ );
M := EquationsAndInequationsOfModuliSpaceOfMatroid( matroid, zz );
LoadPackage( "ZariskiFrames", ">= 2023.06-06" );
m := DistinguishedQuasiAffineSet( M );
e := EmbedInSmallerAmbientSpace( m );
Expand Down
4 changes: 2 additions & 2 deletions examples/Ziegler.g
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ LoadPackage( "MatroidGeneration" );
db := AttachMatroidsDatabase( : localhost );
d := db.matroids_split_public.document("d8ffc0e083ea534e34556086ac2416ca48cc0483");
matroid := MatroidByCoatomsNC( d );
ZZ := HomalgRingOfIntegersInSingular( );
zz := HomalgRingOfIntegersInSingular( );
SetInfoLevel( InfoWarning, 0 );
M := EquationsAndInequationsOfModuliSpaceOfMatroid( matroid, ZZ );
M := EquationsAndInequationsOfModuliSpaceOfMatroid( matroid, zz );
LoadPackage( "ZariskiFrames", ">= 2023.06-06" );
m := DistinguishedQuasiAffineSet( M );
e := EmbedInSmallerAmbientSpace( m );
Expand Down

0 comments on commit ead798c

Please sign in to comment.