Skip to content
Open
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
9 changes: 3 additions & 6 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
name = "RegularizedOptimization"
uuid = "20620ad1-4fe4-4467-ae46-fb087718fe7b"
author = ["Robert Baraldi <[email protected]>",
"Youssef Diouane <[email protected]>",
"Maxence Gollier <[email protected]>",
"Mohamed Laghdaf Habiboullah <[email protected]>",
"Geoffroy Leconte <[email protected]>",
"Dominique Orban <[email protected]>"]
author = ["Robert Baraldi <[email protected]>", "Youssef Diouane <[email protected]>", "Maxence Gollier <[email protected]>", "Mohamed Laghdaf Habiboullah <[email protected]>", "Geoffroy Leconte <[email protected]>", "Dominique Orban <[email protected]>"]
version = "0.1.0"

[deps]
Expand All @@ -18,6 +13,7 @@ NLPModels = "a4795742-8479-5a88-8948-cc11e1c8c1a6"
NLPModelsModifiers = "e01155f1-5c6f-4375-a9d8-616dd036575f"
Percival = "01435c0c-c90d-11e9-3788-63660f8fbccc"
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
ProxTV = "925ea013-038b-5ab6-a1ab-e0849925e528"
ProximalOperators = "a725b495-10eb-56fe-b38b-717eba820537"
RegularizedProblems = "ea076b23-609f-44d2-bb12-a4ae45328278"
ShiftedProximalOperators = "d4fd37fa-580c-4e43-9b30-361c21aae263"
Expand All @@ -32,6 +28,7 @@ NLPModels = "0.19, 0.20, 0.21"
NLPModelsModifiers = "0.7"
OptimizationProblems = "0.9.2"
Percival = "0.7.2"
ProxTV = "1.2.3"
ProximalOperators = "0.15"
RegularizedProblems = "0.1.1"
ShiftedProximalOperators = "0.2"
Expand Down
5 changes: 4 additions & 1 deletion src/RegularizedOptimization.jl
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ using LinearOperators,
NLPModelsModifiers,
RegularizedProblems,
ShiftedProximalOperators,
SolverCore
SolverCore,
ProxTV
using Percival: AugLagModel, update_y!, update_μ!

import SolverCore.reset!
Expand Down Expand Up @@ -46,7 +47,9 @@ include("LM_alg.jl")
include("LMTR_alg.jl")
include("R2DH.jl")
include("R2NModel.jl")
include("iR2_alg.jl")
include("R2N.jl")
include("AL_alg.jl")
include("iR2N.jl")

end # module RegularizedOptimization
Loading
Loading