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

Commit

Permalink
Fix merge error
Browse files Browse the repository at this point in the history
  • Loading branch information
trevorkarn committed Jul 8, 2022
1 parent a34ae96 commit 697104c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/sage/algebras/clifford_algebra.py
Original file line number Diff line number Diff line change
Expand Up @@ -2113,9 +2113,8 @@ 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_new += 1
num_cross += 1
try:
j = next(it)
except StopIteration:
Expand Down

0 comments on commit 697104c

Please sign in to comment.