-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The Riemannian Interior Point Newton Method (#399)
* Implemented conjugate residual method as abstract solver * implement the interior point method * introduce several KKT vector field related functions * Introduce a ClosedFormSolverState for consistency --------- Co-authored-by: mstokkenes <[email protected]> Co-authored-by: Mateusz Baran <[email protected]>
- Loading branch information
1 parent
21dd646
commit 0b05c8c
Showing
47 changed files
with
3,271 additions
and
254 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
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.67" | ||
version = "0.4.68" | ||
|
||
[deps] | ||
ColorSchemes = "35d6a980-a343-548e-a6ea-1d62b119f2f4" | ||
|
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# Conjugate Residual Solver in a Tangent space | ||
|
||
```@meta | ||
CurrentModule = Manopt | ||
``` | ||
|
||
```@docs | ||
conjugate_residual | ||
``` | ||
|
||
## State | ||
|
||
```@docs | ||
ConjugateResidualState | ||
``` | ||
|
||
## Objetive | ||
|
||
```@docs | ||
SymmetricLinearSystemObjective | ||
``` | ||
|
||
## Additional stopping criterion | ||
|
||
```@docs | ||
StopWhenRelativeResidualLess | ||
``` | ||
|
||
## Literature | ||
|
||
```@bibliography | ||
Pages = ["conjugate_residual.md"] | ||
Canonical=false | ||
``` |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# Interior Point Newton method | ||
|
||
```@meta | ||
CurrentModule = Manopt | ||
``` | ||
|
||
```@docs | ||
interior_point_Newton | ||
interior_point_Newton! | ||
``` | ||
|
||
## State | ||
|
||
```@docs | ||
InteriorPointNewtonState | ||
``` | ||
|
||
## Subproblem functions | ||
|
||
```@docs | ||
CondensedKKTVectorField | ||
CondensedKKTVectorFieldJacobian | ||
KKTVectorField | ||
KKTVectorFieldJacobian | ||
KKTVectorFieldAdjointJacobian | ||
KKTVectorFieldNormSq | ||
KKTVectorFieldNormSqGradient | ||
``` | ||
|
||
## Helpers | ||
|
||
```@docs | ||
InteriorPointCentralityCondition | ||
Manopt.calculate_σ | ||
``` | ||
|
||
## Additional stopping criteria | ||
|
||
```@docs | ||
StopWhenKKTResidualLess | ||
``` | ||
|
||
## References | ||
|
||
```@bibliography | ||
Pages = ["interior_point_Newton.md"] | ||
Canonical=false | ||
``` |
This file contains 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
This file contains 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
Oops, something went wrong.
0b05c8c
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@JuliaRegistrator register
Release notes:
Added
interior_point_newton
conjugate_residual
Algorithm to solve a linear system on a tangent space.ArmijoLinesearch
now allows for additionaladditional_decrease_condition
andadditional_increase_condition
keywords to add further conditions to accept additional conditions when to accept an decreasing or increase of the stepsize.DebugFeasibility
to have a debug print about feasibility of points in constrained optimisation employing the newis_feasible
functionInteriorPointCentralityCondition
check that can be added for step candidates within the line search ofinterior_point_newton
LagrangianCost
,LagrangianGradient
,LagrangianHessian
, that based on a constrained objective allow to construct the hessian objective of its LagrangianCondensedKKTVectorField
and itsCondensedKKTVectorFieldJacobian
, that are being used to solve a linear system withininterior_point_newton
KKTVectorField
as well as itsKKTVectorFieldJacobian
and ``KKTVectorFieldAdjointJacobian`KKTVectorFieldNormSq
and itsKKTVectorFieldNormSqGradient
used within the Armijo line search ofinterior_point_newton
StopWhenRelativeResidualLess
for theconjugate_residual
StopWhenKKTResidualLess
for theinterior_point_newton
0b05c8c
There was a problem hiding this comment.
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/112306
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: