Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
Minor fix to generator subindices
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelmarco committed Jan 24, 2019
1 parent 270b5d3 commit a6db43c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sage/algebras/commutative_dga.py
Expand Up @@ -2434,7 +2434,7 @@ def extend(phi, ndegrees, ndifs, nimags, nnames):

QI =CS.quotient(phico.image())
if QI.dimension()>0:
nnames = ['x{}_{}'.format(degree, i+nnamesy) for i in range(QI.dimension())]
nnames = ['x{}_{}'.format(degree, i) for i in range(QI.dimension())]
nbasis = []
bbasis = self.basis(degree)
for v in QI.basis():
Expand Down

0 comments on commit a6db43c

Please sign in to comment.