Skip to content

Commit

Permalink
Bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
luc-blaeser committed Jan 27, 2023
1 parent 008f2b8 commit a146ffa
Showing 1 changed file with 4 additions and 4 deletions.
Expand Up @@ -57,10 +57,10 @@ impl<'a, M: Memory + 'a> EvacuationIncrement<'a, M> {
let partition = iterator.current_partition().unwrap();
if partition.to_be_evacuated() {
self.evacuate_partition(partition);
if self.time.is_over() {
// Resume evacuation of the same partition later.
break;
}
}
if self.time.is_over() {
// Resume potential evacuation of the same partition later.
break;
}
iterator.next_partition();
}
Expand Down

0 comments on commit a146ffa

Please sign in to comment.