Skip to content

Commit c367468

Browse files
jstacclaude
andcommitted
Extend m_vals range in OPI performance testing
- Add m=1, 200, 400 to test range - Now tests m_vals = [1, 5, 10, 25, 50, 100, 200, 400] - Shows performance across wider range of policy iteration steps 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 3198bed commit c367468

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lectures/ifp_opi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ print(f"Speedup factor: {vfi_time / opi_time:.2f}")
356356
Let's try different values of m to see how it affects performance:
357357

358358
```{code-cell} ipython3
359-
m_vals = [5, 10, 25, 50, 100]
359+
m_vals = [1, 5, 10, 25, 50, 100, 200, 400]
360360
opi_times = []
361361
362362
for m in m_vals:

0 commit comments

Comments
 (0)