From 94b80c427c105b8650270f4477f82fb1b7e994ec Mon Sep 17 00:00:00 2001 From: MohamedElWaghf <57914752+MohamedElWaghf@users.noreply.github.com> Date: Tue, 16 Jun 2020 12:05:07 +0200 Subject: [PATCH] maj de l'initialisation des variables --- src/Lagrangien_Augmente.jl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Lagrangien_Augmente.jl b/src/Lagrangien_Augmente.jl index 23cbd5d..e5a17f9 100755 --- a/src/Lagrangien_Augmente.jl +++ b/src/Lagrangien_Augmente.jl @@ -56,11 +56,11 @@ function Lagrangien_Augmente(algo,fonc::Function,contrainte::Function,gradfonc:: hessfonc::Function,grad_contrainte::Function,hess_contrainte::Function,phi::Function,x0,options) if options == [] - epsilon = 1e-30 - tol = 1e-3 + epsilon = 1e-8 + tol = 1e-5 itermax = 1000 - lambda0 = 0.3 - mu0 = 0.5 + lambda0 = 2 + mu0 = 10 tho = 2 else epsilon = options[1]