Skip to content

Commit d55a0de

Browse files
committed
fix typo
1 parent 74b068f commit d55a0de

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

TODO.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,11 +68,12 @@
6868
- [x] Rewrite qcircuit abstraction
6969
- [x] Inner function
7070
- [x] Groover algorithm
71+
- [x] Tuple-tuple comparison
7172

7273
### Week 2: (30 Oct 23)
7374

74-
- [x] Tuple-tuple comparison
7575
- [ ] Groover algorithm tests
76+
- [ ] Slideshow for UF midterm
7677

7778
### Week 3: (6 Nov 23)
7879

qlasskit/ast2logic/t_expression.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ def unfold(v_exps, op):
201201
idx += 1
202202
else:
203203
for si in range(left.BIT_SIZE):
204-
c = And(c, op((bool, tleft[1][i]), (bool, tcomp[1][idx]))[1])
204+
c = And(c, op((bool, tleft[1][idx]), (bool, tcomp[1][idx]))[1])
205205
idx += 1
206206

207207
return (bool, c)

0 commit comments

Comments
 (0)