Skip to content

Commit 4828e38

Browse files
committed
Maded suitable changes in symbolics_15.py
1 parent 8b81091 commit 4828e38

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

integration_tests/symbolics_15.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,12 @@ def mmrv(r: Out[list[CPtr]]) -> None:
3333
basic_new_stack(x)
3434
basic_const_pi(x)
3535

36-
# l1: list[S]
36+
# l1: list[S] = [x]
37+
_l1: list[CPtr] = [x]
3738
l1: list[CPtr] = []
3839

39-
# l1 = [x]
4040
i: i32 = 0
41-
Len: i32 = 1
42-
for i in range(Len):
41+
for i in range(len(_l1)):
4342
tmp: CPtr = basic_new_heap()
4443
l1.append(tmp)
4544
basic_assign(l1[0], x)

0 commit comments

Comments
 (0)