(self, *args, **kwargs)
| 300 | return self.infill() |
| 301 | |
| 302 | def tell(self, *args, **kwargs) -> Population | Result: |
| 303 | return self.advance(*args, **kwargs) |
| 304 | |
| 305 | def _set_optimum(self) -> None: |
| 306 | self.opt = filter_optimum(self.pop, least_infeasible=True) |