View on GitHub

Google Summer of Code 2020 --- (GSoC 2020) Final Report

Integration of Kenzo program with SimplicialSets in SageMath

Overview

This project consisted in improving the interface between the Kenzo Program and SageMath, whose initial version was worked in ticket # 27880 (that ticket makes it possible to communicate both computer algebra programs and enhances the SageMath system with new capabilities in algebraic topology, such as the computation of homotopy groups and some kind of spectral sequences, dealing in particular with simplicial objects of infinite nature). Specifically, our purpose was to combine the functions and techniques of algebraic topology for simplicial sets developed in Kenzo and those existing in the module SimplicialSets of SageMath, in order to complement and enrich the functionalities for computing invariants of such spaces in SageMath.

Trac Ticket

Bearing in mind the SageMath development process by mean of an issue tracking system called Trac, we have created a ‘‘ticket’’. This is the name given for an item on the server, where anyone can post on the trac server if a bug is found in SageMath, if new code is ready to be submitted or you want to review new code already written but not yet included in SageMath or if there are corrections for the documentation. Anyone may search or browse the tickets and for a list of recent changes, Sage trac timeline must be visited.

#29879 Linking Kenzo simplicial sets to SageMath ones

This is the list of commits associated to the work done in the project:

Commit message Author Age Files Lines
Descriptions deleted in lines # optional - kenzo gh-jcuevas-rozo 2020-08-23 4 -23/+23
doctests depending on Kenzo marked as optional gh-jcuevas-rozo 2020-08-11 7 -111/+156
Documentation added about ‘_kenzo_repr’ attribute gh-jcuevas-rozo 2020-08-03 6 -40/+795
classes KenzoAbstractSimplex and KenzoCRPRSimplex added gh-jcuevas-rozo 2020-07-28 3 -222/+339
_kenzo_repr attribute added to ProductOfSimplicialSets, WedgeOfSimplicialSets and SmashProductOfSimplicialSets gh-jcuevas-rozo 2020-07-22 1 -0/+29
Updated gh-jcuevas-rozo 2020-07-09 2 -4/+1
_kenzo_repr added to operations of ChainComplexMorphisms gh-jcuevas-rozo 2020-07-09 1 -18/+12
class KenzoCombination created; classes KenzoChainComplex and KenzoChainComplexMorphism callable gh-jcuevas-rozo 2020-07-09 1 -23/+528
_kenzo_repr for compositions of ChainComplexMorphisms added gh-jcuevas-rozo 2020-07-03 2 -64/+158
_kenzo_repr attribute added to ChainComplex and ChainComplexMorphism gh-jcuevas-rozo 2020-07-02 3 -7/+32
Modifying _kenzo_repr attribute (not optional) gh-jcuevas-rozo 2020-06-26 3 -50/+34
Parameter kenzo_repr added to special simplicial sets gh-jcuevas-rozo 2020-06-24 4 -17/+46
KAbstractSimplex function changed gh-jcuevas-rozo 2020-06-21 1 -1/+2
Optional parameter kenzo_repr added to AbstractSimplex_class.init and SimplicialSet_finite.init gh-jcuevas-rozo 2020-06-18 2 -16/+33
Minor improvements to kenzo.py jcuevas-rozo 2020-06-16 1 -5/+3

Modified files

In the files we were modifying along the development of the project, the next three lines were added to the respective preambles:

from sage.interfaces import kenzo
from sage.features.kenzo import Kenzo
kenzo_is_present = Kenzo().is_present()

Above lines allow us to know if the Kenzo system is installed and they provide a condition to the Kenzo representations of the Sage objects. The following items show some descriptions of the added functions and changes made on the Kenzo files and SageMath files:

kenzo.py

This is the file where the wrapping functions are defined and implemented for Kenzo objects.

sage-interface.lisp

This is a file where the Kenzo functions are implemented in order to be imported in the file kenzo.py.

chain_complex.py

chain_complex_morphism.py

simplicial_set.py

simplicial_set_constructions.py

simplicial_set_examples.py

simplicial_set_morphism.py