From 5387675d9eaf0ca9f300b43a0eb4b18675180292 Mon Sep 17 00:00:00 2001 From: relmonta <46019567+relmonta@users.noreply.github.com> Date: Thu, 18 Jun 2020 16:22:26 +0200 Subject: [PATCH] Update runtests.jl --- test/runtests.jl | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/test/runtests.jl b/test/runtests.jl index 2e355e6..6097937 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -17,7 +17,7 @@ println("") try Test_Optinum.tester_Algo_Newton(false,Algorithme_De_Newton) catch exception - printstyled("Exception "*"\n"*"\n",bold=true,color=:red) + printstyled("$exception "*"\n"*"\n",bold=true,color=:red) end @@ -28,7 +28,7 @@ println("") try Test_Optinum.tester_pas_de_cauchy(false,Pas_De_Cauchy) catch exception - printstyled("Exception "*"\n"*"\n",bold=true,color=:red) + printstyled("$exception "*"\n"*"\n",bold=true,color=:red) end # Tester l'algorithme du gradient conjugué tronqué @@ -38,7 +38,7 @@ println("") try Test_Optinum.tester_gct(false,Gradient_Conjugue_Tronque) catch exception - printstyled("Exception "*"\n"*"\n",bold=true,color=:red) + printstyled("$exception "*"\n"*"\n",bold=true,color=:red) end @@ -49,7 +49,7 @@ println("") try Test_Optinum.tester_regions_de_confiance(false,Regions_De_Confiance) catch exception - printstyled("Exception "*"\n"*"\n",bold=true,color=:red) + printstyled("$exception "*"\n"*"\n",bold=true,color=:red) end @@ -60,5 +60,5 @@ println("") try Test_Optinum.tester_Lagrangien_Augmente(false,Lagrangien_Augmente) catch exception - printstyled("Exception "*"\n"*"\n",bold=true,color=:red) + printstyled("$exception "*"\n"*"\n",bold=true,color=:red) end