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: docs/src/index.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,9 +7,9 @@ This package implements a family of algorithms to solve nonsmooth optimization p
7
7
```
8
8
9
9
where $f : \mathbb{R}^n \to \mathbb{R}$ is continuously differentiable and $h : \mathbb{R}^n \to \mathbb{R} \cup \{\infty\}$ is lower semi-continuous and proper.
10
-
Both $f$ and $h$ may be **nonconvex**.
10
+
Both $f$ and $h$ may be nonconvex.
11
11
12
-
All solvers implemented in this package are **JuliaSmoothOptimizers-compliant**.
12
+
All solvers implemented in this package are JuliaSmoothOptimizers-compliant.
13
13
They take a [`RegularizedNLPModel`](https://jso.dev/RegularizedProblems.jl/dev/reference#RegularizedProblems.RegularizedNLPModel) as input and return a [`GenericExecutionStats`](https://jso.dev/SolverCore.jl/stable/reference/#SolverCore.GenericExecutionStats).
14
14
15
15
A [`RegularizedNLPModel`](https://jso.dev/RegularizedProblems.jl/stable/reference#RegularizedProblems.RegularizedNLPModel) contains:
@@ -37,7 +37,7 @@ A presentation of each algorithm is given [here](@ref algorithms).
37
37
38
38
## Preallocating
39
39
40
-
All solvers in RegularizedOptimization.jl have **in-place versions**.
40
+
All solvers in RegularizedOptimization.jl have in-place versions.
41
41
Users can preallocate a workspace and reuse it across solves to avoid memory allocations, which is useful in repetitive scenarios.
0 commit comments