Skip to content
New issue

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

HZ: avoid convergence if bisected #174

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Commits on Jan 28, 2024

  1. HZ: avoid convergence if bisected

    secant2 calls update, and update might switch to bisection in the U3 step. If we did bisect, the line-search progress
    step L2 testing whether the interval is shrinking fast
    enough is nonsensical (we might have shrunk multiple
    iterations of bisection, but that is not an indication that the
    secant model was "working").
    
    Consequently, this reports back about whether bisection
    was engaged in `update`, and if so skip any kind of
    convergence assessment and do another iteration.
    
    Fixes JuliaNLSolvers#173.
    timholy committed Jan 28, 2024
    Configuration menu
    Copy the full SHA
    0dc986c View commit details
    Browse the repository at this point in the history