We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The inner lists might get garbage collected. Hence, despite crisp caching, MorphismBetweenDirectSums is computed twice in the following example:
MorphismBetweenDirectSums
LoadPackage( "CAP" ); cat := CreateCapCategory( ); SetCachingOfCategoryCrisp( cat ); myobj := SymmetricGroup( 3 ); AddObject( cat, myobj ); mymor := GroupHomomorphismByImages( myobj, myobj ); AddMorphism( cat, mymor ); AddDirectSum( cat, function( l ) Display( "DirectSum" ); return myobj; end ); AddMorphismBetweenDirectSums( cat, function( s, l, r ) Display( "MorphismBetweenDirectSums" ); return mymor; end ); Finalize( cat ); result := MorphismBetweenDirectSums( [ [ mymor ] ] ); GASMAN("collect"); MorphismBetweenDirectSums( [ [ mymor ] ] );
The text was updated successfully, but these errors were encountered:
Impressive 😄
Sorry, something went wrong.
No branches or pull requests
The inner lists might get garbage collected. Hence, despite crisp caching,
MorphismBetweenDirectSums
is computed twice in the following example:The text was updated successfully, but these errors were encountered: