Skip to content

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
gboehl committed Jan 3, 2025
1 parent 11554bc commit b15e7f3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions econpizza/solvers/stacking.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,15 @@ def find_path_stacking(
init_dist : array, optional
initial distribution, defaults to the steady state distribution
init_guess : array, optional
initial guess on the sequence trajectory, defaults to the steady state
initial guess on the sequence trajectory (the solution), defaults to the steady state
pars : dict, optional
alternative parameters. Warning: do only change those parameters that are invariant to the steady state.
alternative parameters. Warning: it will only be effective to change those parameters that are invariant to the steady state.
horizon : int, optional
number of periods until the system is assumed to be back in the steady state. Defaults to ``200``
number of periods until the system is assumed to be back in the steady state. Finding trajectories with a low horizon is quicker, but chosing a larger horizon may be necessary if the simulated time series do not converge. Defaults to ``200``
use_solid_solver : bool, optional
calculate the full jacobian and use a standard Newton method. Defaults to ``False``
calculate the full jacobian instead of the iterative approximation, and use a standard Newton method. This usually takes a very long time. Defaults to ``False``
skip_jacobian : bool, optional
whether to skip the calculation of the steady state sequence space Jacobian. If True, the last cached Jacobian will be used. Defaults to ``False``
whether to skip the calculation of the steady state sequence space Jacobian. If True, the last cached Jacobian will be used. Only use this if you know what you are doing. Defaults to ``False``
verbose : bool, optional
degree of verbosity. ``0``/``False`` is silent. Defaults to ``False``
raise_errors : bool, optional
Expand Down

0 comments on commit b15e7f3

Please sign in to comment.