2020-06-16 14:39:40 +00:00
|
|
|
using Markdown
|
|
|
|
using Test
|
|
|
|
using LinearAlgebra
|
2020-06-15 17:20:15 +00:00
|
|
|
using Test_Optinum
|
2020-06-19 20:06:07 +00:00
|
|
|
using SujetOptinum
|
2020-06-15 17:20:15 +00:00
|
|
|
|
2020-06-16 14:26:14 +00:00
|
|
|
include("../src/Algorithme_De_Newton.jl")
|
|
|
|
include("../src/Gradient_Conjugue_Tronque.jl")
|
|
|
|
include("../src/Lagrangien_Augmente.jl")
|
|
|
|
include("../src/Pas_De_Cauchy.jl")
|
|
|
|
include("../src/Regions_De_Confiance.jl")
|
2020-06-16 12:11:16 +00:00
|
|
|
|
2020-06-19 19:04:41 +00:00
|
|
|
Test_Optinum.cacher_stacktrace()
|
2020-06-19 16:54:27 +00:00
|
|
|
|
2020-06-16 19:14:38 +00:00
|
|
|
# Tester l'algorithme de Newton
|
2020-06-16 17:43:05 +00:00
|
|
|
try
|
2020-06-17 10:57:22 +00:00
|
|
|
Test_Optinum.tester_Algo_Newton(false,Algorithme_De_Newton)
|
2020-06-18 20:39:12 +00:00
|
|
|
catch e
|
|
|
|
printstyled("$e \n",bold=true,color=:red)
|
2020-06-16 17:43:05 +00:00
|
|
|
end
|
2020-06-16 12:11:16 +00:00
|
|
|
|
2020-06-16 19:14:38 +00:00
|
|
|
# Tester l'algorithme du pas de Cauchy
|
2020-06-16 17:43:05 +00:00
|
|
|
try
|
2020-06-17 10:57:22 +00:00
|
|
|
Test_Optinum.tester_pas_de_cauchy(false,Pas_De_Cauchy)
|
2020-06-18 20:39:12 +00:00
|
|
|
catch e
|
|
|
|
printstyled("$e \n",bold=true,color=:red)
|
2020-06-17 10:57:22 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
# Tester l'algorithme du gradient conjugué tronqué
|
|
|
|
try
|
|
|
|
Test_Optinum.tester_gct(false,Gradient_Conjugue_Tronque)
|
2020-06-18 20:39:12 +00:00
|
|
|
catch e
|
|
|
|
printstyled("$e \n",bold=true,color=:red)
|
2020-06-16 17:43:05 +00:00
|
|
|
end
|
|
|
|
|
2020-06-16 19:14:38 +00:00
|
|
|
# Tester l'algorithme des Régions de confiance avec PasdeCauchy | GCT
|
2020-06-16 17:43:05 +00:00
|
|
|
try
|
2020-06-17 10:57:22 +00:00
|
|
|
Test_Optinum.tester_regions_de_confiance(false,Regions_De_Confiance)
|
2020-06-18 20:39:12 +00:00
|
|
|
catch e
|
|
|
|
printstyled("$e \n",bold=true,color=:red)
|
2020-06-16 17:43:05 +00:00
|
|
|
end
|
|
|
|
|
2020-06-16 19:14:38 +00:00
|
|
|
# Tester l'algorithme du Lagrangien Augmenté
|
2020-06-16 17:43:05 +00:00
|
|
|
try
|
2020-06-17 10:57:22 +00:00
|
|
|
Test_Optinum.tester_Lagrangien_Augmente(false,Lagrangien_Augmente)
|
2020-06-18 20:39:12 +00:00
|
|
|
catch e
|
|
|
|
printstyled("$e \n",bold=true,color=:red)
|
2020-06-19 18:43:23 +00:00
|
|
|
end
|