2020-06-15 17:20:15 +00:00
|
|
|
using Test_Optinum
|
2020-06-16 14:09:56 +00:00
|
|
|
using Sujet_Optinum
|
2020-06-15 17:20:15 +00:00
|
|
|
|
2020-06-16 12:11:16 +00:00
|
|
|
include("Algorithme_De_Newton.jl")
|
|
|
|
include("Gradient_Conjugue_Tronque.jl")
|
|
|
|
include("Lagrangien_Augmente.jl")
|
|
|
|
include("Pas_De_Cauchy.jl")
|
|
|
|
include("Regions_De_Confiance.jl")
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-06-15 17:20:15 +00:00
|
|
|
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)
|
|
|
|
Test_Optinum.test_Lagrangien_Augmente(false,Lagrangien_Augmente)
|
|
|
|
|