Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions src/optimizers.jl
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,25 @@ push!(
1,
),
)
push!(
optimizers,
(
"FOMO",
:FomoSolver,
"JSOSolvers.jl",
:fomo,
true,
false,
false,
false,
false,
true,
true,
true,
false,
1,
),
)
push!(
optimizers,
(
Expand Down
12 changes: 6 additions & 6 deletions src/selection.jl
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ Algorithm selection:
- unconstrained: ✓;
- nonlinear objective: ✓;
- may use 2-th order derivative.
There are 5 optimizers available:
["LBFGS", "R2", "TRON", "TRUNK", "Percival"].
["LBFGS", "R2", "TRON", "TRUNK", "Percival"]
There are 6 optimizers available:
["LBFGS", "R2", "FOMO", "TRON", "TRUNK", "Percival"].
["LBFGS", "R2", "FOMO", "TRON", "TRUNK", "Percival"]
```

```jldoctest; output = false
Expand All @@ -51,9 +51,9 @@ Algorithm selection:
- unconstrained: ✓;
- nonlinear objective: ✓;
- may use 2-th order derivative.
There are 7 optimizers available:
["LBFGS", "R2", "TRON", "TRUNK", "TRON-NLS", "TRUNK-NLS", "Percival"].
["LBFGS", "R2", "TRON", "TRUNK", "TRON-NLS", "TRUNK-NLS", "Percival"]
There are 8 optimizers available:
["LBFGS", "R2", "FOMO", "TRON", "TRUNK", "TRON-NLS", "TRUNK-NLS", "Percival"].
["LBFGS", "R2", "FOMO", "TRON", "TRUNK", "TRON-NLS", "TRUNK-NLS", "Percival"]
```
"""
function select_optimizers(
Expand Down