Skip to content

Commit

Permalink
First-order with momentum (#250)
Browse files Browse the repository at this point in the history
Co-authored-by: Dominique <[email protected]>
Co-authored-by: tmigot <[email protected]>
  • Loading branch information
3 people authored Mar 16, 2024
1 parent 8f11bf9 commit 3ed9f92
Show file tree
Hide file tree
Showing 11 changed files with 510 additions and 241 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ This package provides an implementation of four classic algorithms for unconstra
> high-order regularized models. *Mathematical Programming*, 163(1), 359-368.
> DOI: [10.1007/s10107-016-1065-8](https://doi.org/10.1007/s10107-016-1065-8)

- `fomo`: a first-order method with momentum for unconstrained optimization;

- `tron`: a pure Julia implementation of TRON, a trust-region solver for bound-constrained optimization described in

> Chih-Jen Lin and Jorge J. Moré, *Newton's Method for Large Bound-Constrained
Expand Down
4 changes: 3 additions & 1 deletion docs/src/solvers.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@
- [`tron`](@ref)
- [`trunk`](@ref)
- [`R2`](@ref)
- [`fomo`](@ref)

| Problem type | Solvers |
| --------------------- | -------- |
| Unconstrained NLP | [`lbfgs`](@ref), [`tron`](@ref), [`trunk`](@ref), [`R2`](@ref)|
| Unconstrained NLP | [`lbfgs`](@ref), [`tron`](@ref), [`trunk`](@ref), [`R2`](@ref), [`fomo`](@ref)|
| Unconstrained NLS | [`trunk`](@ref), [`tron`](@ref) |
| Bound-constrained NLP | [`tron`](@ref) |
| Bound-constrained NLS | [`tron`](@ref) |
Expand All @@ -21,4 +22,5 @@ lbfgs
tron
trunk
R2
fomo
```
2 changes: 1 addition & 1 deletion src/JSOSolvers.jl
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export solve!
# Unconstrained solvers
include("lbfgs.jl")
include("trunk.jl")
include("R2.jl")
include("fomo.jl")

# Unconstrained solvers for NLS
include("trunkls.jl")
Expand Down
231 changes: 0 additions & 231 deletions src/R2.jl

This file was deleted.

Loading

0 comments on commit 3ed9f92

Please sign in to comment.