Scientific library for massively parallel optimization algorithms
Scientific library for massively parallel optimization
pagmo$ python3 -c "import pagmo; print(pagmo.__version__)"$ python3 -c "import pagmo as pg; prob = pg.problem(pg.sphere(10)); algo = pg.algorithm(pg.de()); pop = pg.population(prob, 20); pop = algo.evolve(pop); print(pop.champion_f)"$ python3 -c "import pagmo as pg; prob = pg.problem(pg.dtlz()); algo = pg.algorithm(pg.nsga2()); pop = pg.population(prob, 50); pop = algo.evolve(pop)"