Skip to content

Commit 65baba2

Browse files
authored
Merge pull request #248 from QuantEcon/mfv_fix
[mccall_fitted_vfi] fix issue #246
2 parents caeb814 + d9114c8 commit 65baba2

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

lectures/mccall_fitted_vfi.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -213,8 +213,6 @@ mccall_data_continuous = [
213213
('c', float64), # unemployment compensation
214214
('α', float64), # job separation rate
215215
('β', float64), # discount factor
216-
('σ', float64), # scale parameter in lognormal distribution
217-
('μ', float64), # location parameter in lognormal distribution
218216
('w_grid', float64[:]), # grid of points for fitted VFI
219217
('w_draws', float64[:]) # draws of wages for Monte Carlo
220218
]
@@ -239,7 +237,7 @@ class McCallModelContinuous:
239237
def update(self, v, d):
240238
241239
# Simplify names
242-
c, α, β, σ, μ = self.c, self.α, self.β, self.σ, self.μ
240+
c, α, β = self.c, self.α, self.β
243241
w = self.w_grid
244242
u = lambda x: np.log(x)
245243

0 commit comments

Comments
 (0)