Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Error with e.g. Any[] starting condition #885

Open
TorkelE opened this issue Mar 18, 2025 · 2 comments
Open

Error with e.g. Any[] starting condition #885

TorkelE opened this issue Mar 18, 2025 · 2 comments
Labels
bug Something isn't working

Comments

@TorkelE
Copy link
Member

TorkelE commented Mar 18, 2025

This works:

# Creates the problem with Float64 initial value.
using Optimization, OptimizationBBO
rosenbrock(x, p) = (p[1] - x[1])^2 + p[2] * (x[2] - x[1]^2)^2
x0 = zeros(2)
p = [1.0, 100.0]
prob = OptimizationProblem(rosenbrock, x0, p, lb = [-1.0, -1.0], ub = [1.0, 1.0])
sol = solve(prob, BBO_adaptive_de_rand_1_bin_radiuslimited())

but if we force x0 to be an Vector{Any} it fails

# Creates the problem with Any initial value.
x0 = Any[0.0, 0.0]
prob = OptimizationProblem(rosenbrock, x0, p, lb = [-1.0, -1.0], ub = [1.0, 1.0])
sol = solve(prob, BBO_adaptive_de_rand_1_bin_radiuslimited()) # ERROR: MethodError: no method matching iterate(::BlackBoxOptim.ContinuousRectSearchSpace)

This is not too far-fetched to happen. I.e. I had a routine which creates a starting vector my concatenating two vectors. If one of these is empty this happen:

[[]; [1.0, 2.0]] # isa Vector{Any}
@TorkelE TorkelE added the bug Something isn't working label Mar 18, 2025
@ChrisRackauckas
Copy link
Member

Using a numerical vector for the u0? That's fishy. @AayushSabharwal we should make this always warn by default for the next release.

@TorkelE
Copy link
Member Author

TorkelE commented Mar 18, 2025

Would be very helpful. If it is an undesired behaviour it should error on

prob = OptimizationProblem(rosenbrock, x0, p, lb = [-1.0, -1.0], ub = [1.0, 1.0])

(ideally with a helpful error message)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants