When I try to test SS, I found a problem. The firm module has been changed today and the get_w function has more inputs: L, K. In solve_ss function, the L and K come after get_w. But if we move L&K before get_w(), we will not have n_s to get L&K. n_s comes from opt.root(), which needs w to be an input. But w comes from get_w.
When I try to test SS, I found a problem. The firm module has been changed today and the get_w function has more inputs: L, K. In solve_ss function, the L and K come after get_w. But if we move L&K before get_w(), we will not have n_s to get L&K. n_s comes from opt.root(), which needs w to be an input. But w comes from get_w.