pagmo2
pagmo2 copied to clipboard
A C++ platform to perform parallel computations of optimisation tasks (global and local) via the asynchronous generalized island model.
**Describe the bug** Documentation for the constant_argument meta problem is outdated and still references the boolean flag vector
A dump of solvers/algorithms that might be useful to have in pagmo: - [x] https://projects.coin-or.org/Ipopt ipopt (this was available in pagmo 1.x, potential issues compiling it on windows as it...
Hi! I'm interested in doing Mixed interger linear optimization. The coin-cbc can solve this type of problem effectively. The latest version of Pagmo don't integrate cbc solver. Will mixed interger...
In the polynomial mutation code, we have (Notice the comment in the code) ```c++ void polynomial_mutation_impl(vector& child .....) { for(....){ y = child[j]; yl = lb[j]; yu = ub[j]; delta1...
for integer problems, the documentation is unclear about how integer and continuous components must be distinguished: https://esa.github.io/pagmo2/docs/cpp/problem.html#_CPPv4NK5pagmo7problem7get_nixEv I figured out from the pygmo doc that integers must be tucked at...
Our documentation website at https://esa.github.io/pagmo2/ needs some improvements, as recently pointed out in issue reports (#258, #263, #279, etc.) and general chatter on the gitter channel. The API is fully...
when some points of the initial population are outside the bounds and the objective tend to make it go outside, gaco can hang: ``` #include #include #include using namespace pagmo;...
it seems cmaes (and xnes) does not care about the bounds of the problem as the final population ends up way outside eventhough the initial population is inside the bounds:...