Skip to content

Commit 1c7e29e

Browse files
committed
misc
1 parent bb06715 commit 1c7e29e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lectures/mccall_fitted_vfi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ $$
4444

4545
and $\{Z_t\}$ is IID and standard normal.
4646

47-
While we already considered continuous wage distributions briefly in Exercise {ref}`mm_ex2` of the {doc}`first job search lecture <mccall_model>`, the change was relatively trivial in that case.
47+
While we already considered continuous wage distributions briefly in {doc}`<mccall_model>`, the change was relatively trivial in that case.
4848

4949
The reason is that we were able to reduce the problem to solving for a single scalar value (the continuation value).
5050

lectures/mccall_model.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -950,7 +950,7 @@ because they can capitalize on high offers while rejecting low ones.
950950
Compute the average duration of unemployment when $\beta=0.99$ and
951951
$c$ takes the following values
952952
953-
> `c_vals = np.linspace(10, 40, 25)`
953+
> `c_vals = np.linspace(10, 40, 4)`
954954
955955
That is, start the agent off as unemployed, compute their reservation wage
956956
given the parameters, and then simulate to see how long it takes to accept.
@@ -1040,7 +1040,7 @@ def compute_mean_stopping_time_continuous(w_bar, model, num_reps=100000, seed=12
10401040
10411041
10421042
# Compute mean stopping time for different values of c
1043-
c_vals = jnp.linspace(10, 40, 25)
1043+
c_vals = jnp.linspace(10, 40, 4)
10441044
10451045
@jax.jit
10461046
def compute_stop_time_for_c_continuous(c):

0 commit comments

Comments
 (0)