You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Changelog.md
+8-2Lines changed: 8 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,12 @@ The file was started with Version `0.4`.
6
6
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
7
7
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
8
8
9
+
## [Unreleased]
10
+
11
+
### Added
12
+
13
+
* In `WolfePowellLinesearchStepsize`, two new keyword arguments `stop_increasing_at_step=` and `stop_decreasing_at_step=` were added to limit the number of increase/decrease steps in the initial bracketing phase for s_plus and s_minus, respectively. (resolves (#495))
14
+
9
15
## [0.5.26] November 5, 2025
10
16
11
17
### Added
@@ -235,7 +241,7 @@ present; they were changed to `retact_fused!`.
235
241
* add a `PreconditionedDirection` variant to the `direction` gradient processor
236
242
keyword argument and its corresponding `PreconditionedDirectionRule`
237
243
* make the preconditioner available in quasi Newton.
238
-
* in `gradient_descent` and `conjugate_gradient_descent` the rule can be added anyways.
244
+
* in `gradient_descent` and `conjugate_gradient_descent` the rule can be added anyway.
239
245
240
246
### Fixed
241
247
@@ -370,7 +376,7 @@ In general this introduces a few factories, that avoid having to pass the manifo
370
376
* index for equality constraints is unified to `j` running from `1,...,n`
371
377
* iterations are using now `k`
372
378
*`get_manopt_parameter` has been renamed to `get_parameter` since it is internal,
373
-
so internally that is clear; accessing it from outside hence reads anyways`Manopt.get_parameter`
379
+
so internally that is clear; accessing it from outside hence reads anyway`Manopt.get_parameter`
374
380
*`set_manopt_parameter!` has been renamed to `set_parameter!` since it is internal,
375
381
so internally that is clear; accessing it from outside hence reads `Manopt.set_parameter!`
376
382
* changed the `stabilize::Bool=` keyword in `quasi_Newton` to the more flexible `project!=`
Copy file name to clipboardExpand all lines: src/plans/stepsize.jl
+49-31Lines changed: 49 additions & 31 deletions
Original file line number
Diff line number
Diff line change
@@ -902,7 +902,7 @@ stepsize ``t`` from ``p`` in direction ``η``.
902
902
* `cbls:::CubicBracketingLinesearchStepsize`: containing `retraction_method`, `vector_transport` and the temporary `candidate_point` and `candidate_direction`
0 commit comments