Skip to content

Commit

Permalink
Merge pull request #49 from mohamed-barakat/devel
Browse files Browse the repository at this point in the history
  • Loading branch information
mohamed-barakat authored Oct 25, 2022
2 parents 59cc9a6 + c8b81f3 commit f7f4c99
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions PackageInfo.g
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ SetPackageInfo( rec(

PackageName := "ZariskiFrames",
Subtitle := "(Co)frames/Locales of Zariski closed/open subsets of affine, projective, or toric varieties",
Version := "2022.09-04",
Version := "2022.10-01",
Date := ~.Version{[ 1 .. 10 ]},
Date := Concatenation( "01/", ~.Version{[ 6, 7 ]}, "/", ~.Version{[ 1 .. 4 ]} ),
License := "GPL-2.0-or-later",
Expand Down Expand Up @@ -104,7 +104,7 @@ Dependencies := rec(
[ "CAP", ">= 2019.01.16" ],
[ "Toposes", ">= 2019.01.20" ],
[ "CategoryConstructor", ">= 2022.05-07" ],
[ "Locales", ">= 2022.09-06" ],
[ "Locales", ">= 2022.10-02" ],
[ "ToolsForHomalg", ">= 2021.10-02" ],
[ "MatricesForHomalg", ">= 2019.07.01" ],
[ "GaussForHomalg", ">= 2019.01.10" ],
Expand Down
2 changes: 1 addition & 1 deletion gap/ZariskiFrame.gi
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ InstallMethod( Closure,
H := UnderlyingCategory( CapCategory( A ) );

if HasIsCartesianClosedCategory( H ) and IsCartesianClosedCategory( H ) then
return ComplementAsClosedSubset( NormalizedPairInUnderlyingHeytingOrCoHeytingAlgebra( A )[2] );
return ComplementAsClosedSubset( NormalizedMinuendAndSubtrahendInUnderlyingHeytingOrCoHeytingAlgebra( A )[2] );
fi;

TryNextMethod( );
Expand Down
6 changes: 3 additions & 3 deletions gap/ZariskiFrameOrCoframe.gi
Original file line number Diff line number Diff line change
Expand Up @@ -714,7 +714,7 @@ InstallMethod( Pullback,
function( phi, A )
local B;

B := List( PairInUnderlyingLattice( A ), a -> Pullback( phi, a ) );
B := List( MinuendAndSubtrahendInUnderlyingLattice( A ), a -> Pullback( phi, a ) );

B := B[1] - B[2];

Expand Down Expand Up @@ -1058,13 +1058,13 @@ InstallMethod( CanonicalObject,
LocallyClosedPart );

##
InstallMethod( StandardPairInUnderlyingHeytingOrCoHeytingAlgebra,
InstallMethod( StandardMinuendAndSubtrahendInUnderlyingHeytingOrCoHeytingAlgebra,
"for an object in a meet-semilattice of formal single differences",
[ IsObjectInMeetSemilatticeOfSingleDifferences ],

function( A )

A := NormalizedPairInUnderlyingHeytingOrCoHeytingAlgebra( A );
A := NormalizedMinuendAndSubtrahendInUnderlyingHeytingOrCoHeytingAlgebra( A );

List( A, StandardizeObject );

Expand Down

0 comments on commit f7f4c99

Please sign in to comment.