Update runtests.jl

This commit is contained in:
relmonta 2020-06-18 16:15:20 +02:00 committed by GitHub
parent 27f23baf59
commit 35d6c38866
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -17,7 +17,7 @@ println("")
try try
Test_Optinum.tester_Algo_Newton(false,Algorithme_De_Newton) Test_Optinum.tester_Algo_Newton(false,Algorithme_De_Newton)
catch exception catch exception
printstyled("$exception "*"\n"*"\n",bold=true,color=:red) printstyled("Exception "*"\n"*"\n",bold=true,color=:red)
end end
@ -28,7 +28,7 @@ println("")
try try
Test_Optinum.tester_pas_de_cauchy(false,Pas_De_Cauchy) Test_Optinum.tester_pas_de_cauchy(false,Pas_De_Cauchy)
catch exception catch exception
printstyled("$exception "*"\n"*"\n",bold=true,color=:red) printstyled("Exception "*"\n"*"\n",bold=true,color=:red)
end end
# Tester l'algorithme du gradient conjugué tronqué # Tester l'algorithme du gradient conjugué tronqué
@ -38,7 +38,7 @@ println("")
try try
Test_Optinum.tester_gct(false,Gradient_Conjugue_Tronque) Test_Optinum.tester_gct(false,Gradient_Conjugue_Tronque)
catch exception catch exception
printstyled("$exception "*"\n"*"\n",bold=true,color=:red) printstyled("Exception "*"\n"*"\n",bold=true,color=:red)
end end
@ -49,7 +49,7 @@ println("")
try try
Test_Optinum.tester_regions_de_confiance(false,Regions_De_Confiance) Test_Optinum.tester_regions_de_confiance(false,Regions_De_Confiance)
catch exception catch exception
printstyled("$exception "*"\n"*"\n",bold=true,color=:red) printstyled("Exception "*"\n"*"\n",bold=true,color=:red)
end end
@ -60,5 +60,5 @@ println("")
try try
Test_Optinum.tester_Lagrangien_Augmente(false,Lagrangien_Augmente) Test_Optinum.tester_Lagrangien_Augmente(false,Lagrangien_Augmente)
catch exception catch exception
printstyled("$exception "*"\n"*"\n",bold=true,color=:red) printstyled("Exception "*"\n"*"\n",bold=true,color=:red)
end end