(self, *args, **kwargs)
| 296 | |
| 297 | @Cache |
| 298 | def pareto_front(self, *args, **kwargs): |
| 299 | pf = self._calc_pareto_front(*args, **kwargs) |
| 300 | pf = at_least_2d_array(pf, extend_as="r") |
| 301 | if pf is not None and pf.shape[1] == 2: |
| 302 | pf = pf[np.argsort(pf[:, 0])] |
| 303 | return pf |
| 304 | |
| 305 | @Cache |
| 306 | def pareto_set(self, *args, **kwargs): |