remove Test_Optinum in runtests.jl
This commit is contained in:
parent
1934ca6d36
commit
417cbcb4de
|
@ -1,7 +1,7 @@
|
|||
using Markdown
|
||||
using Test
|
||||
using LinearAlgebra
|
||||
using Test_Optinum
|
||||
using TestOptinum
|
||||
using SujetOptinum
|
||||
|
||||
include("../src/Algorithme_De_Newton.jl")
|
||||
|
@ -10,39 +10,39 @@ include("../src/Lagrangien_Augmente.jl")
|
|||
include("../src/Pas_De_Cauchy.jl")
|
||||
include("../src/Regions_De_Confiance.jl")
|
||||
|
||||
Test_Optinum.cacher_stacktrace()
|
||||
TestOptinum.cacher_stacktrace()
|
||||
|
||||
# Tester l'algorithme de Newton
|
||||
try
|
||||
Test_Optinum.tester_Algo_Newton(false,Algorithme_De_Newton)
|
||||
TestOptinum.tester_Algo_Newton(false,Algorithme_De_Newton)
|
||||
catch e
|
||||
printstyled("$e \n",bold=true,color=:red)
|
||||
end
|
||||
|
||||
# Tester l'algorithme du pas de Cauchy
|
||||
try
|
||||
Test_Optinum.tester_pas_de_cauchy(false,Pas_De_Cauchy)
|
||||
TestOptinum.tester_pas_de_cauchy(false,Pas_De_Cauchy)
|
||||
catch e
|
||||
printstyled("$e \n",bold=true,color=:red)
|
||||
end
|
||||
|
||||
# Tester l'algorithme du gradient conjugué tronqué
|
||||
try
|
||||
Test_Optinum.tester_gct(false,Gradient_Conjugue_Tronque)
|
||||
TestOptinum.tester_gct(false,Gradient_Conjugue_Tronque)
|
||||
catch e
|
||||
printstyled("$e \n",bold=true,color=:red)
|
||||
end
|
||||
|
||||
# Tester l'algorithme des Régions de confiance avec PasdeCauchy | GCT
|
||||
try
|
||||
Test_Optinum.tester_regions_de_confiance(false,Regions_De_Confiance)
|
||||
TestOptinum.tester_regions_de_confiance(false,Regions_De_Confiance)
|
||||
catch e
|
||||
printstyled("$e \n",bold=true,color=:red)
|
||||
end
|
||||
|
||||
# Tester l'algorithme du Lagrangien Augmenté
|
||||
try
|
||||
Test_Optinum.tester_Lagrangien_Augmente(false,Lagrangien_Augmente)
|
||||
TestOptinum.tester_Lagrangien_Augmente(false,Lagrangien_Augmente)
|
||||
catch e
|
||||
printstyled("$e \n",bold=true,color=:red)
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue