Skip to content

Commit

Permalink
misc
Browse files Browse the repository at this point in the history
  • Loading branch information
jstac committed Sep 21, 2023
1 parent 08ee04a commit 217965d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lectures/opt_savings.md
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ model = create_consumption_model()
σ_pi, pi_time = run_algorithm(policy_iteration, model)
σ_vfi, vfi_time = run_algorithm(value_iteration, model, tol=1e-5)
m_vals = range(5, 3000, 100)
m_vals = range(5, 600, 40)
opi_times = []
for m in m_vals:
σ_opi, opi_time = run_algorithm(optimistic_policy_iteration, model, m=m, tol=1e-5)
Expand Down

0 comments on commit 217965d

Please sign in to comment.