This commit is contained in:
Lukian LEIZOUR 2024-03-28 23:39:05 +01:00
parent bb09c5afca
commit 6c65f8d551

View file

@ -250,7 +250,6 @@ public class Grid extends JPanel {
this.bestGrid = universe.copyGrid();
best_filled_boxes = universe.getFilledBoxes();
best_nb_mirrors = universe.getNbMirrors();
//printUniverseGrid(this.bestGrid);
}
}
else if (stack.size() > 0) {
@ -262,7 +261,6 @@ public class Grid extends JPanel {
if (Instant.now().toEpochMilli() - lastRefresh > refreshRate) {
lastRefresh = Instant.now().toEpochMilli();
printUniverseGrid(this.bestGrid);
}
} while (stack.size() != 0 && solving == true);