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
In the BfgsMinimizer, the reason for exit is always the absolute gradient.
return new MinimizationWithLineSearchResult(candidate, iterations, ExitCondition.AbsoluteGradient, totalLineSearchSteps, iterationsWithNontrivialLineSearch);
I believe that the reason for termination should be set by checking the conditions of termination.
return new MinimizationWithLineSearchResult(candidate, iterations, currentExitCondition, totalLineSearchSteps, iterationsWithNontrivialLineSearch);
It's not a big deal, but it can help when setting optimization parameters...
The text was updated successfully, but these errors were encountered:
Hi,
Yes, this seems like a legitimate change. Would you like to open a PR?
Sorry, something went wrong.
Hi, @jkalias, yes, I can.
No branches or pull requests
In the BfgsMinimizer, the reason for exit is always the absolute gradient.
I believe that the reason for termination should be set by checking the conditions of termination.
It's not a big deal, but it can help when setting optimization parameters...
The text was updated successfully, but these errors were encountered: