Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.
Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.
| Download
GAP 4.8.9 installation with standard packages -- copy to your CoCalc project to get it
Project: cocalc-sagemath-dev-slelievre
Views: 418346############################################################################# ## ## CAP ## ## Copyright 2015, Sebastian Gutsche, TU Kaiserslautern ## Sebastian Posur, RWTH Aachen ## ############################################################################# InstallMethod( \/, [ IsCapCategory, IsFunction ], SerreQuotientCategory ); InstallMethod( LiftCovariantEndoFunctorToSerreQuotientCategory, [ IsCapCategory, IsCapFunctor ], function( serre_category, functor ) local new_functor, object_func; new_functor := CapFunctor( Concatenation( "Lifted ", Name( functor ) ), serre_category, serre_category ); object_func := function( object ) local underlying_honest, new_honest; underlying_honest := UnderlyingHonestObject( object ); new_honest := ApplyFunctor( functor, underlying_honest ); return AsSerreQuotientCategoryObject( serre_category, new_honest ); end; AddObjectFunction( new_functor, object_func ); return new_functor; end ); InstallMethod( LiftNaturalIsoFromIdToSomeToSerreQuotientCategory, [ IsCapCategory, IsCapNaturalTransformation ], function( serre_category, nat_trans ) local new_nat_trans, new_source, new_range, nat_trans_func; new_source := IdentityMorphism( AsCatObject( serre_category ) ); new_range := LiftCovariantEndoFunctorToSerreQuotientCategory( serre_category, Range( nat_trans ) ); new_nat_trans := NaturalTransformation( Concatenation( "Lifted ", Name( nat_trans ) ), new_source, new_range ); nat_trans_func := function( new_source, obj, new_range ) local new_mor; new_mor := ApplyNaturalTransformation( nat_trans, UnderlyingHonestObject( obj ) ); return AsSerreQuotientCategoryMorphism( serre_category, new_mor ); end; AddNaturalTransformationFunction( new_nat_trans, nat_trans_func ); return new_nat_trans; end );