Skip to content

Commit

Permalink
documented the role of makeEulerErrorFunc. Fixes #892
Browse files Browse the repository at this point in the history
  • Loading branch information
sbenthall committed Jan 18, 2021
1 parent 2d7b8ab commit a8396c3
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 0 deletions.
6 changes: 6 additions & 0 deletions HARK/ConsumptionSaving/ConsAggShockModel.py
Original file line number Diff line number Diff line change
Expand Up @@ -418,6 +418,12 @@ def makeEulerErrorFunc(self, mMax=100, approx_inc_dstn=True):
Returns
-------
None
Notes
-----
This method is not used by any other code in the library. Rather, it is here
for expository and benchmarking purposes.
"""
raise NotImplementedError()

Expand Down
10 changes: 10 additions & 0 deletions HARK/ConsumptionSaving/ConsIndShockModel.py
Original file line number Diff line number Diff line change
Expand Up @@ -2096,6 +2096,11 @@ def makeEulerErrorFunc(self, mMax=100, approx_inc_dstn=True):
Returns
-------
None
Notes
-----
This method is not used by any other code in the library. Rather, it is here
for expository and benchmarking purposes.
"""
# Get the income distribution (or make a very dense one)
if approx_inc_dstn:
Expand Down Expand Up @@ -2676,6 +2681,11 @@ def makeEulerErrorFunc(self, mMax=100, approx_inc_dstn=True):
Returns
-------
None
Notes
-----
This method is not used by any other code in the library. Rather, it is here
for expository and benchmarking purposes.
"""
raise NotImplementedError()

Expand Down
5 changes: 5 additions & 0 deletions HARK/ConsumptionSaving/ConsLaborModel.py
Original file line number Diff line number Diff line change
Expand Up @@ -455,6 +455,11 @@ def makeEulerErrorFunc(self, mMax=100, approx_inc_dstn=True):
Returns
-------
None
Notes
-----
This method is not used by any other code in the library. Rather, it is here
for expository and benchmarking purposes.
"""
raise NotImplementedError()

Expand Down
5 changes: 5 additions & 0 deletions HARK/ConsumptionSaving/ConsMarkovModel.py
Original file line number Diff line number Diff line change
Expand Up @@ -1244,5 +1244,10 @@ def makeEulerErrorFunc(self, mMax=100, approx_inc_dstn=True):
Returns
-------
None
Notes
-----
This method is not used by any other code in the library. Rather, it is here
for expository and benchmarking purposes.
"""
raise NotImplementedError()
5 changes: 5 additions & 0 deletions HARK/ConsumptionSaving/ConsPrefShockModel.py
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,11 @@ def makeEulerErrorFunc(self, mMax=100, approx_inc_dstn=True):
Returns
-------
None
Notes
-----
This method is not used by any other code in the library. Rather, it is here
for expository and benchmarking purposes.
"""
raise NotImplementedError()

Expand Down

0 comments on commit a8396c3

Please sign in to comment.