esa / pagmo2

A C++ platform to perform parallel computations of optimisation tasks (global and local) via the asynchronous generalized island model.
https://esa.github.io/pagmo2/
GNU General Public License v3.0
812 stars 160 forks source link

Question about get_bounds() #573

Closed IlefatKion closed 1 month ago

IlefatKion commented 1 month ago

This library is of a great help! Thanks to everyone contributing!

I am lookig at possible ways to use 2 different box bounds for my optimization problem. this means that the problem should be contained by one of the 2 bounds. Does anyone have a clue to do so?

Thanks..

darioizzo commented 1 month ago

If the bounds are disconnected I think the only option is to instantiate and evolve 2 different problems. (assuming i understood the question)

darioizzo commented 1 month ago

This is not an issue rather a question. Closing it.

IlefatKion commented 1 month ago

Thanks for your answer!