Francesco Biscani
Francesco Biscani
@dmikushin thanks for taking the initiative on this. Most of the core devs are currently on vacation, I should be able to get more involved in the next week or...
It's a good suggestion. Not sure if we should tackle this now however or if it is better to wait for the migration to pybind11, I am a bit wary...
@CoolRunning now that we moved to pybind11, I have been thinking about this feature. What exactly would you expect ``archi[0:3]`` to return? A new archipelago containing a copy of the...
> With regards to the lifetime: don't we have this problem already? > > ``` > isl = archi[0] > del archi > isl.get_population() # still works > ``` There's...
The whole pagmo model on the C++ side is implemented with value semantics, so you cannot really share anything the way you can share/duplicate a reference in the Python sense....
I am not familiar with PyPI best practices. Are we supposed to bundle the source within the existing binary wheel or should we have a separate package for the source?
Gonna ping @darioizzo on this one.
I believe that you are referring to the fact that in the archipelago constructor the population size arg is called ``pop_size``? That choice was made because, in the archipelago ctor,...
Ok yeah, that's misleading. I don't have a good solution at the moment. One of the nice things of the archi constructor is that it forwards most arguments to the...
@oni73 apologies for the delay in the reply. As long as you are using directly the algorithm API (as you show in your example), manually pickling after every evolve based...