From 5d118bd856d11a7ca0bd499dabb532bc2fcbd9be Mon Sep 17 00:00:00 2001 From: Paras Puneet Singh <136245940+ParasPuneetSingh@users.noreply.github.com> Date: Thu, 29 Aug 2024 14:43:45 +0530 Subject: [PATCH] Update runtests.jl Increased tolerance from 0.1 to 0.95 --- lib/OptimizationMetaheuristics/test/runtests.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/OptimizationMetaheuristics/test/runtests.jl b/lib/OptimizationMetaheuristics/test/runtests.jl index 4313b9c14..55d04e181 100644 --- a/lib/OptimizationMetaheuristics/test/runtests.jl +++ b/lib/OptimizationMetaheuristics/test/runtests.jl @@ -186,7 +186,7 @@ OBJECTIVES = Dict( key = "$alg_name for $prob_name" value = OBJECTIVES[key] objectives = sol.objective - @test value ≈ objectives atol=1e-1 + @test value ≈ objectives atol=0.95 end end end