econ-ark / HARK

Heterogenous Agents Resources & toolKit
Apache License 2.0
315 stars 195 forks source link

calc_stable_points is being run when it shouldn't be #1397

Open mnwhite opened 2 months ago

mnwhite commented 2 months ago

Types that descend from IndShockConsumerType are (apparently) trying to run calc_stable_points(), probably as part of post_solve(). This doesn't generate an error, but it does print a message to screen, and we don't want that happening all the time. The fix is probably just a one-liner for each class that's doing this. I'll get to it soon.