diff --git a/smac/intensification/intensification.py b/smac/intensification/intensification.py index da742431b..18cadb15f 100644 --- a/smac/intensification/intensification.py +++ b/smac/intensification/intensification.py @@ -404,6 +404,9 @@ def get_next_run(self, # If no more time, stage transition is a must if not is_there_time_due_to_adaptive_cap: + # Since the challenger fails to outperform the incumbent due to adaptive capping, + # we discard all the forthcoming runs. + self.to_run = [] self.stage = IntensifierStage.RUN_INCUMBENT self.logger.debug( "Stop challenger itensification due "