From 267fdcf34385abb0f482edce17b18daa0c78c053 Mon Sep 17 00:00:00 2001 From: nsaloua <58554997+nsaloua@users.noreply.github.com> Date: Tue, 16 Jun 2020 14:11:16 +0200 Subject: [PATCH] Update runtests.jl --- test/runtests.jl | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/test/runtests.jl b/test/runtests.jl index 5d27aa0..4a916fe 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -1,5 +1,13 @@ using Test_Optinum +include("Algorithme_De_Newton.jl") +include("Gradient_Conjugue_Tronque.jl") +include("Lagrangien_Augmente.jl") +include("Pas_De_Cauchy.jl") +include("Regions_De_Confiance.jl") + + + Test_Optinum.test_Algo_Newton(false,Algorithme_De_Newton) Test_Optinum.test_pas_de_cauchy(false,Pas_De_Cauchy) Test_Optinum.test_regions_de_confiance(false,Regions_De_Confiance)