I have this code to compute the homology of a simplicial complex
S = SimplicialComplex([[5, 2], [5, 2, 1], [5, 0], [5, 1], [4, 3], [4, 3, 0], [4, 2], [4, 0], [3, 0], [3, 1], [2, 1],])
S.homology(generators = True)
The output only consists of the homology, and does not contain the generators. Am I missing something?