Skip to content

Commit 842f104

Browse files
remove downstream BBO test until it's maintained
1 parent 811207b commit 842f104

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Project.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ Zygote = "0.5, 0.6"
4545
julia = "1.5"
4646

4747
[extras]
48-
BlackBoxOptim = "a134a8b2-14d6-55f6-9291-3336d3ab0209"
4948
CMAEvolutionStrategy = "8d3b24bd-414e-49e0-94fb-163cc3a3e411"
5049
DiffEqFlux = "aae7a2af-3d4f-5e19-a356-7da93b79d9d0"
5150
Evolutionary = "86b6b26d-c046-49b6-aa0b-5f0f74682bd6"
@@ -58,4 +57,4 @@ SafeTestsets = "1bc83da4-3b8d-516f-aca4-4fe02f6d838f"
5857
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
5958

6059
[targets]
61-
test = ["BlackBoxOptim", "Evolutionary", "DiffEqFlux", "IterTools", "OrdinaryDiffEq", "NLopt", "CMAEvolutionStrategy", "Pkg", "Random", "SafeTestsets", "Test"]
60+
test = ["Evolutionary", "DiffEqFlux", "IterTools", "OrdinaryDiffEq", "NLopt", "CMAEvolutionStrategy", "Pkg", "Random", "SafeTestsets", "Test"]

test/rosenbrock.jl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@ using Evolutionary
110110
sol = solve(prob, CMAES=40 , λ = 100),abstol=1e-15)
111111
@test 10*sol.minimum < l1
112112

113+
#=
113114
using BlackBoxOptim
114115
prob = GalacticOptim.OptimizationProblem(optprob, x0, lb=[-1.0, -1.0], ub=[0.8, 0.8])
115116
sol = solve(prob, BBO())
@@ -118,6 +119,7 @@ sol = solve(prob, BBO())
118119
prob_multi = EnsembleOptimizationProblem([prob, prob])
119120
sol_multi = solve(prob_multi, BBO(:borg_moea), FitnessScheme=ParetoFitnessScheme{2}(is_minimizing=true), ϵ=0.05, MaxSteps=500000)
120121
@test 10*sum(sol_multi.minimum) < l1
122+
=#
121123

122124
using ModelingToolkit
123125
rosenbrock(x, p) = (p[1] - x[1])^2 + p[2] * (x[2] - x[1]^2)^2

0 commit comments

Comments
 (0)