I am trying to setup a differential_evolution algorithm.
I have approximately 15 variables, each with its own bounds (let's suppose they all share the same bounds (150,250). I have successfully accomplished to do so.
Now, I would like to add the possibility for any parameter to be set to 0 (or any small number would be fine).
Is there any way that I could set the bounds for my parameters to be (0,0.1) U (150, 250)?
Can this be achieved through some kind of constraint?
Here's a wild guess. It's enough to configure
differential_evolutionfor the kind of constraint you want. It isn't enough to run a meaningful optimization, but there's no sense in tuning for an objective function that you haven't provided.