Skip to content

Commit 2d22c88

Browse files
replaced FinSet( SkeletalFinSets, ... ) -> FinSet( cat, ... )
1 parent 6cc4af5 commit 2d22c88

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

gap/SkeletalFinSetsForCAP.gi

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ end );
368368
AddImageObject( SkeletalFinSets,
369369
function ( cat, phi )
370370

371-
return FinSet( SkeletalFinSets, BigInt( Length( Set( AsList( phi ) ) ) ) );
371+
return FinSet( cat, BigInt( Length( Set( AsList( phi ) ) ) ) );
372372

373373
end );
374374

@@ -531,7 +531,7 @@ end );
531531
AddTerminalObject( SkeletalFinSets,
532532
function ( cat )
533533

534-
return FinSet( SkeletalFinSets, BigInt( 1 ) );
534+
return FinSet( cat, BigInt( 1 ) );
535535

536536
end );
537537

@@ -547,7 +547,7 @@ end );
547547
AddDirectProduct( SkeletalFinSets,
548548
function ( cat, L )
549549

550-
return FinSet( SkeletalFinSets, Product( List( L, Length ) ) );
550+
return FinSet( cat, Product( List( L, Length ) ) );
551551

552552
end );
553553

@@ -593,7 +593,7 @@ AddEqualizer( SkeletalFinSets,
593593

594594
Eq := Filtered( [ 0 .. Length( s ) - 1 ], x -> ForAll( [ 1 .. Length( D ) - 1 ], j -> D2[j][1 + x] = D2[j + 1][1 + x] ) );
595595

596-
return FinSet( SkeletalFinSets, Length( Eq ) );
596+
return FinSet( cat, Length( Eq ) );
597597

598598
end );
599599

@@ -640,7 +640,7 @@ end );
640640
AddInitialObject( SkeletalFinSets,
641641
function ( cat )
642642

643-
return FinSet( SkeletalFinSets, BigInt( 0 ) );
643+
return FinSet( cat, BigInt( 0 ) );
644644

645645
end );
646646

@@ -700,7 +700,7 @@ end );
700700
AddCoproduct( SkeletalFinSets,
701701
function ( cat, L )
702702

703-
return FinSet( SkeletalFinSets, Sum( List( L, Length ) ) );
703+
return FinSet( cat, Sum( List( L, Length ) ) );
704704

705705
end );
706706

@@ -734,7 +734,7 @@ end );
734734
AddCoequalizer( SkeletalFinSets,
735735
function ( cat, s, D )
736736

737-
return FinSet( SkeletalFinSets, BigInt( Length( SKELETAL_FIN_SETS_ExplicitCoequalizer( s, D ) ) ) );
737+
return FinSet( cat, BigInt( Length( SKELETAL_FIN_SETS_ExplicitCoequalizer( s, D ) ) ) );
738738

739739
end );
740740

@@ -817,7 +817,7 @@ AddExponentialOnObjects( SkeletalFinSets,
817817
m := Length( M );
818818
n := Length( N );
819819

820-
return FinSet( SkeletalFinSets, n ^ m );
820+
return FinSet( cat, n ^ m );
821821

822822
end );
823823

0 commit comments

Comments
 (0)