Skip to content

Commit 2bc03cb

Browse files
authored
Merge pull request #64 from mohamed-barakat/truth
Comply with Toposes v2021.11-03
2 parents 830b424 + a1b25ea commit 2bc03cb

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

PackageInfo.g

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ SetPackageInfo( rec(
1010

1111
PackageName := "FinSetsForCAP",
1212
Subtitle := "The elementary topos of (skeletal) finite sets",
13-
Version := "2020.11-03",
13+
Version := "2020.11-04",
1414

1515
Date := Concatenation( "01/", ~.Version{[ 6, 7 ]}, "/", ~.Version{[ 1 .. 4 ]} ),
1616
License := "GPL-2.0-or-later",
@@ -100,7 +100,7 @@ Dependencies := rec(
100100
NeededOtherPackages := [
101101
[ "GAPDoc", ">= 1.5" ],
102102
[ "CAP", ">= 2021.05-02" ],
103-
[ "Toposes", ">= 2021.03-01" ],
103+
[ "Toposes", ">= 2021.11-03" ],
104104
],
105105
SuggestedOtherPackages := [ ],
106106
ExternalConditions := [ ],

examples/SubobjectClassifier.g

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ A := FinSet([1,5]);
99
#! <An object in FinSets>
1010
m := MapOfFinSets(A, List(AsList(A), x -> [x,x]), S);
1111
#! <A morphism in FinSets>
12-
Display(TruthMorphismIntoSubobjectClassifier(FinSets));
12+
Display(TruthMorphismOfTrue(FinSets));
1313
#! [ [ "*" ], [ [ "*", "true" ] ], [ "true", "false" ] ]
1414
Display(ClassifyingMorphismOfSubobject(m));
1515
#! [ [ 1, 2, 3, 4, 5 ], [ [ 1, "true" ], [ 2, "false" ], [ 3, "false" ],

gap/FinSetsForCAP.gi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1003,7 +1003,7 @@ AddSubobjectClassifier( category_of_finite_sets,
10031003
end );
10041004

10051005
##
1006-
AddTruthMorphismIntoSubobjectClassifierWithGivenObjects( category_of_finite_sets,
1006+
AddTruthMorphismOfTrueWithGivenObjects( category_of_finite_sets,
10071007
function ( category_of_finite_sets, terminal, subobject )
10081008

10091009
return MapOfFinSets( terminal, [ [ "*", "true" ] ], subobject );

0 commit comments

Comments
 (0)