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

Commit

Permalink
Merge branch 'u/tkarn/32369-exterior-rewrite-v2' of trac.sagemath.org…
Browse files Browse the repository at this point in the history
…:sage into exterior-main
  • Loading branch information
trevorkarn committed Jul 8, 2022
2 parents 9e19f79 + 1601588 commit a34ae96
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/sage/algebras/clifford_algebra.py
Original file line number Diff line number Diff line change
Expand Up @@ -2113,8 +2113,9 @@ def _mul_(self, other):
num_cross = 0 # keep track of the number of signs
tot_cross = 0
for i in ml:
num_cross_new = 0
while i > j:
num_cross += 1
num_cross_new += 1
try:
j = next(it)
except StopIteration:
Expand Down

0 comments on commit a34ae96

Please sign in to comment.