Skip to content

Commit 9f79e56

Browse files
Merge pull request #109 from mohamed-barakat/devel
renamed MeetSemilatticeOfDifferences -> MeetSemilatticeOfSingleDifferences
2 parents 33eaae0 + 308c616 commit 9f79e56

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

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 := "Locales",
1313
Subtitle := "Locales, frames, coframes, meet semi-lattices of locally closed subsets, and Boolean algebras of constructible sets",
14-
Version := "2022.10-09",
14+
Version := "2022.10-10",
1515
Date := ~.Version{[ 1 .. 10 ]},
1616
Date := Concatenation( "01/", ~.Version{[ 6, 7 ]}, "/", ~.Version{[ 1 .. 4 ]} ),
1717
License := "GPL-2.0-or-later",

gap/ConstructibleObjectsAsUnionOfSingleDifferences.gi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ InstallMethod( BooleanAlgebraOfConstructibleObjectsAsUnionOfDifferences,
6767
SetIsBooleanAlgebra( C, true );
6868

6969
SetUnderlyingCategory( C, P );
70-
SetUnderlyingMeetSemilatticeOfDifferences( C, MeetSemilatticeOfDifferences( P ) );
70+
SetUnderlyingMeetSemilatticeOfDifferences( C, MeetSemilatticeOfSingleDifferences( P ) );
7171

7272
AddObjectRepresentation( C, IsConstructibleObjectAsUnionOfSingleDifferences );
7373

gap/MultipleDifferences.gi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ InstallMethod( MeetSemilatticeOfMultipleDifferences,
5353

5454
SetUnderlyingCategory( D, P );
5555

56-
SetUnderlyingCategoryOfSingleDifferences( D, MeetSemilatticeOfDifferences( P ) );
56+
SetUnderlyingCategoryOfSingleDifferences( D, MeetSemilatticeOfSingleDifferences( P ) );
5757

5858
AddObjectRepresentation( D, IsObjectInMeetSemilatticeOfMultipleDifferences );
5959

@@ -339,7 +339,7 @@ InstallMethod( EquivalenceToMeetSemilatticeOfDifferences,
339339
local S, T, squash;
340340

341341
S := MeetSemilatticeOfMultipleDifferences( P );
342-
T := MeetSemilatticeOfDifferences( P );
342+
T := MeetSemilatticeOfSingleDifferences( P );
343343

344344
squash := CapFunctor( "Equivalence from the meet-semilattice of formal multiple differences to the meet-semilattice of formal single differences", S, T );
345345

gap/SingleDifferences.gd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ DeclareOperation( "DistinguishedSubtrahend",
8989
#! Construct the meet-semilattice of differences from the lattice <A>L</A>.
9090
#! @Arguments L
9191
#! @Returns a &CAP; category
92-
DeclareAttribute( "MeetSemilatticeOfDifferences",
92+
DeclareAttribute( "MeetSemilatticeOfSingleDifferences",
9393
IsCapCategory );
9494

9595
DeclareOperation( "SingleDifference",

gap/SingleDifferences.gi

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ InstallOtherMethodForCompilerForCAP( SingleDifference,
2929
end );
3030

3131
##
32-
InstallMethod( MeetSemilatticeOfDifferences,
32+
InstallMethod( MeetSemilatticeOfSingleDifferences,
3333
"for a CAP category",
3434
[ IsCapCategory and IsThinCategory ],
3535

3636
function( P )
3737
local name, D, L;
3838

39-
name := "The meet-semilattice of differences of ";
39+
name := "The meet-semilattice of single differences of ";
4040

4141
name := Concatenation( name, Name( P ) );
4242

@@ -185,7 +185,7 @@ InstallMethod( \-,
185185
Error( "the arguments A and B are in different categories\n" );
186186
fi;
187187

188-
D := MeetSemilatticeOfDifferences( H );
188+
D := MeetSemilatticeOfSingleDifferences( H );
189189

190190
return SingleDifference( D, Pair( A, B ) );
191191

@@ -245,7 +245,7 @@ InstallMethod( FormalDifferenceOfNormalizedObjects,
245245
function( A, B )
246246
local D, C;
247247

248-
D := MeetSemilatticeOfDifferences( CapCategory( A ) );
248+
D := MeetSemilatticeOfSingleDifferences( CapCategory( A ) );
249249

250250
C := CreateCapCategoryObjectWithAttributes( D,
251251
NormalizedMinuendAndSubtrahendInUnderlyingHeytingOrCoHeytingAlgebra, [ A, B ],

tst/NormalizeObject.tst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ gap> Oy := OpenSubsetOfSpec( "x" / R );
2222
D_{Q[x,y]}( <...> )
2323
gap> Oxy := OpenSubsetOfSpec( "x*y" / R );
2424
D_{Q[x,y]}( <...> )
25-
gap> SD := MeetSemilatticeOfDifferences( CapCategory( Oy ) );;
25+
gap> SD := MeetSemilatticeOfSingleDifferences( CapCategory( Oy ) );;
2626
gap> OD := SingleDifference( SD, Pair( Oy, Oxy ) );
2727
D_{Q[x,y]}( I ) \ D_{Q[x,y]}( J )
2828
gap> Display( OD );

0 commit comments

Comments
 (0)