Generalized Cauchy direction and box constraints - #554
Merged
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## dev-0.6 #554 +/- ##
===========================================
Coverage ? 100.00%
===========================================
Files ? 91
Lines ? 11631
Branches ? 0
===========================================
Hits ? 11631
Misses ? 0
Partials ? 0 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
kellertuer
reviewed
Dec 9, 2025
Member
|
Since this will also be part of the next major version 0.6, I diverted the base branch (this merges into) already to |
# Conflicts: # Changelog.md # src/helpers/LineSearchesTypes.jl # src/plans/stepsize/linesearch.jl # src/plans/stepsize/stepsize.jl # src/plans/stopping_criterion.jl # test/plans/test_stepsize.jl # test/plans/test_stopping_criteria.jl # test/solvers/test_quasi_Newton.jl
…tyle and fix one further bug.
Bumps [crate-ci/typos](https://github.com/crate-ci/typos) from 1.45.0 to 1.45.1. - [Release notes](https://github.com/crate-ci/typos/releases) - [Changelog](https://github.com/crate-ci/typos/blob/master/CHANGELOG.md) - [Commits](crate-ci/typos@v1.45.0...v1.45.1) --- updated-dependencies: - dependency-name: crate-ci/typos dependency-version: 1.45.1 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* Bump julia-actions/setup-julia from 2 to 3 Bumps [julia-actions/setup-julia](https://github.com/julia-actions/setup-julia) from 2 to 3. - [Release notes](https://github.com/julia-actions/setup-julia/releases) - [Commits](julia-actions/setup-julia@v2...v3) --- updated-dependencies: - dependency-name: julia-actions/setup-julia dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * remove arch keyword since by now they all should run on 64 bit and it was too restructive for mac os --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Ronny Bergmann <git@ronnybergmann.net>
* introduce a stopped_at function for solver states. * Add stopped_at to the docs. * Add the AI section to the initial TOC. * a bit of code formatting and one test. * Fix a test.
… not on patch level (#602)
…art (#604) * refactor CGRule * Fix some issues with CG + HZ * provide a proper test + formatting * fix CG test * Refactor CG rules. * Fix 2 cases where we implicitly relied on storage being updated in case it was not filled and now fill it explicitly. * bump version. --------- Co-authored-by: Ronny Bergmann <git@ronnybergmann.net>
# Conflicts: # Changelog.md # src/plans/conjugate_gradient_plan.jl # test/plans/test_conjugate_gradient_plan.jl # test/solvers/test_gradient_descent.jl
paprzybysz
reviewed
May 12, 2026
Co-authored-by: Patryk Przybysz <PatrykPrzybysz.tl@interia.pl>
This was referenced May 15, 2026
Merged
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This is a WIP PR that implements the GCP idea to L-BFGS and maybe some other solvers, so that they can be used in the presence of box constraints on the Euclidean part of the manifold. The constraints are handled similarly to L-BFGS-B (although not all Euclidean tricks are applied).
TODO:
The implementation was prepared in collaboration with @paprzybysz .