Skip to content

Commit

Permalink
Bundle method(s) patch (#396)
Browse files Browse the repository at this point in the history
---------

Co-authored-by: Ronny Bergmann <[email protected]>
  • Loading branch information
hajg-ijk and kellertuer authored Jun 27, 2024
1 parent befce29 commit 5062ad5
Show file tree
Hide file tree
Showing 8 changed files with 108 additions and 170 deletions.
8 changes: 8 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ All notable Changes to the Julia package `Manopt.jl` will be documented in this
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.4.66] June 27, 2024

### Changed

* Remove functions `estimate_sectional_curvature`, `ζ_1`, `ζ_2`, `close_point` from `convex_bundle_method`
* Remove some unused fields and arguments such as `p_estimate`, `ϱ`, `α`, from `ConvexBundleMethodState` in favor of jut `k_max`
* Change parameter `R` placement in `ProximalBundleMethodState` to fifth position

## [0.4.65] June 13, 2024

### Changed
Expand Down
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "Manopt"
uuid = "0fc0a36d-df90-57f3-8f93-d78a9fc72bb5"
authors = ["Ronny Bergmann <[email protected]>"]
version = "0.4.65"
version = "0.4.66"

[deps]
ColorSchemes = "35d6a980-a343-548e-a6ea-1d62b119f2f4"
Expand Down Expand Up @@ -46,8 +46,8 @@ Dates = "1.6"
ForwardDiff = "0.10"
JuMP = "1.15"
LRUCache = "1.4"
LinearAlgebra = "1.6"
LineSearches = "7.2.0"
LinearAlgebra = "1.6"
ManifoldDiff = "0.3.8"
Manifolds = "0.9.11"
ManifoldsBase = "0.15.10"
Expand Down
5 changes: 1 addition & 4 deletions docs/src/solvers/convex_bundle_method.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,7 @@ DebugWarnIfLagrangeMultiplierIncreases

```@docs
convex_bundle_method_subsolver
estimate_sectional_curvature
ζ_1
ζ_2
close_point
DomainBackTrackingStepsize
```

## Literature
Expand Down
Loading

2 comments on commit 5062ad5

@kellertuer
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register

Changed

  • Remove functions estimate_sectional_curvature, ζ_1, ζ_2, close_point from convex_bundle_method
  • Remove some unused fields and arguments such as p_estimate, ϱ, α, from ConvexBundleMethodState in favor of jut k_max
  • Change parameter R placement in ProximalBundleMethodState to fifth position

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/109895

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.4.66 -m "<description of version>" 5062ad577e2bbc9dbcef156b702a769cf5a77b93
git push origin v0.4.66

Please sign in to comment.