We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Should not print a warning when converged with exactly max_iter iterations (ref #144):
max_iter
julia> f(x) = 0.5 * x f (generic function with 1 method) julia> compute_fixed_point(f, 1.0, verbose=2, max_iter=14) Compute iterate 10 with error 0.0009765625 WARNING: max_iter attained in compute_fixed_point 6.103515625e-5 julia> compute_fixed_point(f, 1.0, verbose=2, max_iter=15) Compute iterate 10 with error 0.0009765625 Converged in 14 steps 6.103515625e-5
See also the Python version QuantEcon/QuantEcon.py#273 (comment).
The text was updated successfully, but these errors were encountered:
I am working on it
Sorry, something went wrong.
Remove warning message when converged with max_iter (#195)
11069d3
* Remove warning message when converged with max_iter Fixes #150 * Remove warning message when converged with max_iter improved version Fixes #150
No branches or pull requests
Should not print a warning when converged with exactly
max_iter
iterations (ref #144):See also the Python version QuantEcon/QuantEcon.py#273 (comment).
The text was updated successfully, but these errors were encountered: