2020-06-16 14:39:40 +00:00
|
|
|
using Markdown
|
|
|
|
using Test
|
|
|
|
using LinearAlgebra
|
2020-06-19 20:30:27 +00:00
|
|
|
using TestOptinum
|
2020-07-24 14:52:48 +00:00
|
|
|
using Optinum
|
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 20:30:27 +00:00
|
|
|
TestOptinum.cacher_stacktrace()
|
2020-06-19 16:54:27 +00:00
|
|
|
|
2020-11-07 08:01:49 +00:00
|
|
|
affiche = false
|
|
|
|
println("affiche = ",affiche)
|
2020-06-22 08:52:23 +00:00
|
|
|
# Tester l'ensemble des algorithmes
|
2020-11-07 08:01:49 +00:00
|
|
|
@testset "Test SujetOptinum" begin
|
2020-06-22 10:20:57 +00:00
|
|
|
# Tester l'algorithme de Newton
|
2020-11-07 08:01:49 +00:00
|
|
|
tester_algo_newton(affiche,Algorithme_De_Newton)
|
2020-06-17 10:57:22 +00:00
|
|
|
|
2020-06-22 10:20:57 +00:00
|
|
|
# Tester l'algorithme du pas de Cauchy
|
2020-11-07 08:01:49 +00:00
|
|
|
tester_pas_de_cauchy(affiche,Pas_De_Cauchy)
|
2020-06-16 17:43:05 +00:00
|
|
|
|
2020-06-22 10:20:57 +00:00
|
|
|
# Tester l'algorithme du gradient conjugué tronqué
|
2020-11-07 08:01:49 +00:00
|
|
|
tester_gct(affiche,Gradient_Conjugue_Tronque)
|
2020-06-20 12:05:57 +00:00
|
|
|
|
2020-06-22 10:20:57 +00:00
|
|
|
# Tester l'algorithme des Régions de confiance avec PasdeCauchy | GCT
|
2020-11-07 08:01:49 +00:00
|
|
|
tester_regions_de_confiance(affiche,Regions_De_Confiance)
|
2020-06-22 10:20:57 +00:00
|
|
|
|
|
|
|
# Tester l'algorithme du Lagrangien Augmenté
|
2020-11-07 08:01:49 +00:00
|
|
|
tester_lagrangien_augmente(affiche,Lagrangien_Augmente)
|
2020-06-19 18:43:23 +00:00
|
|
|
end
|