Skip to content

Commit f53c4ef

Browse files
committed
remove unnecessary comment
1 parent f1a7dca commit f53c4ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lectures/mccall_q.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ def plot_value_function_seq(mcm, ax, num_plots=8):
215215
for i in range(num_plots):
216216
ax.plot(mcm.w, v, '-', alpha=0.4, label=f"iterate {i}")
217217
# Update guess
218-
for j in range(n): # changed variable name to avoid conflict
218+
for j in range(n):
219219
v_next = v_next.at[j].set(jnp.max(state_action_values(mcm, j, v)))
220220
v = v_next # handling immutability
221221

0 commit comments

Comments
 (0)