|
1 | | -# Themelis, Stella, Patrinos, "Douglas-Rachford splitting and ADMM |
2 | | -# for nonconvex optimization: Accelerated and Newton-type linesearch algorithms", |
3 | | -# arXiv:2005.10230, 2020. |
4 | | -# |
5 | | -# https://arxiv.org/abs/2005.10230 |
| 1 | +# Themelis, Stella, Patrinos, "Douglas-Rachford splitting and ADMM for |
| 2 | +# nonconvex optimization: Accelerated and Newton-type linesearch algorithms", |
| 3 | +# Computational Optimization and Applications, vol. 82, no. 2, pp. 395-440 (2022). |
6 | 4 |
|
7 | 5 | using Base.Iterators |
8 | 6 | using ProximalAlgorithms.IterationTools |
@@ -47,7 +45,7 @@ See also: [`DRLS`](@ref). |
47 | 45 | - `directions=LBFGS(5)`: strategy to use to compute line-search directions. |
48 | 46 |
|
49 | 47 | # References |
50 | | -1. Themelis, Stella, Patrinos, "Douglas-Rachford splitting and ADMM for nonconvex optimization: Accelerated and Newton-type linesearch algorithms", arXiv:2005.10230, 2020. |
| 48 | +1. Themelis, Stella, Patrinos, "Douglas-Rachford splitting and ADMM for nonconvex optimization: Accelerated and Newton-type linesearch algorithms", Computational Optimization and Applications, vol. 82, no. 2, pp. 395-440 (2022). |
51 | 49 | """ |
52 | 50 | Base.@kwdef struct DRLSIteration{R,Tx,Tf,Tg,Tmf,TLf,D} |
53 | 51 | f::Tf = Zero() |
@@ -216,7 +214,7 @@ See also: [`DRLSIteration`](@ref), [`IterativeAlgorithm`](@ref). |
216 | 214 | - `kwargs...`: additional keyword arguments to pass on to the `DRLSIteration` constructor upon call |
217 | 215 |
|
218 | 216 | # References |
219 | | -1. Themelis, Stella, Patrinos, "Douglas-Rachford splitting and ADMM for nonconvex optimization: Accelerated and Newton-type linesearch algorithms", arXiv:2005.10230, 2020. |
| 217 | +1. Themelis, Stella, Patrinos, "Douglas-Rachford splitting and ADMM for nonconvex optimization: Accelerated and Newton-type linesearch algorithms", Computational Optimization and Applications, vol. 82, no. 2, pp. 395-440 (2022). |
220 | 218 | """ |
221 | 219 | DRLS(; |
222 | 220 | maxit=1_000, |
|
0 commit comments