Skip to content

Commit e22fc2b

Browse files
committed
dirty fix to the final derivation of IsColiftingObject
(will be updated later anyway, hence this hot fix)
1 parent 3a9f85e commit e22fc2b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

StableCategories/gap/DerivedMethodsForStableCategories.gi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ AddFinalDerivationBundle( # IsColiftingObject
100100

101101
id_A := IdentityMorphism( A );
102102

103-
return IsNullHomotopic( id_A );
103+
return ValueGlobal( "IsNullHomotopic" )( id_A ); # it need to be fixed
104104

105105
end
106106
],
@@ -133,7 +133,7 @@ AddFinalDerivationBundle( # IsColiftingObject
133133

134134
id_A := IdentityMorphism( A );
135135

136-
lambda := HomotopyMorphisms( id_A );
136+
lambda := ValueGlobal( "HomotopyMorphisms" )( id_A );
137137

138138
r_A := AsZFunction( i -> MorphismBetweenDirectSums( [ [ lambda[ i +1 ] ], [ id_A[ i ] ] ] ) );
139139

0 commit comments

Comments
 (0)