Platypus icon indicating copy to clipboard operation
Platypus copied to clipboard

A Free and Open Source Python Library for Multiobjective Optimization

Results 92 Platypus issues
Sort by recently updated
recently updated
newest added

I am playing around with platypus and the inter temporal lake problem. I have implemented a generational version of BORG using MultiMethod and NSGA2. I however now run into severe...

Currently facing an issue/problem/bug in platypus. After running the optimisation using my own custom functions together with the `ProcessPoolEvaluator()` and following the example in the document , it returns no...

How can I adjust importance of objectives? Is the order of objective function like below? If x**2 is important. ` def shaffer(x): return x**2, (x-2)**2 ` elif (x-2)**2 important `...

I noticed that constraints can be functions by looking at the code, and that this wasn't yet documented. I added a single paragraph to the documentation for it. It could...

It is not possible to fix the value of a variable. ```python Integer(0,0) ``` It would be useful in the context of multiple iterations in a optimization process where I...

Hi! I am trying to distribute the fitness evaluations using the MPIPool facility. Unfortunately, my code crashes with the following error message: ``` Traceback (most recent call last): File "main_mpi.py",...

Hi First off thanks for a simple to use optimization library. Is it possible to add multiple/concurrent runs at the same time? I do a lot of CAD-CFD optimization and...

There are too many algorithms in 'algorithms.py' and I think a new directory is needed.

I would like to know how I use the NSGAII or NSGAIII algorithm for a WFG class ploblem? I have tried the way below and have given error. # define...