This commit is contained in:
@@ -19,9 +19,6 @@ public class Solver {
|
||||
}
|
||||
|
||||
public MultiDoku solve(MultiDoku doku, List<IConstraint> constraints) throws Exception {
|
||||
if (!doku.isValid(constraints)) {
|
||||
throw new Exception("Invalid doku");
|
||||
}
|
||||
List<MutableCell> allMutableCells = doku.getMutableCells();
|
||||
List<MutableCell> remainingCellsToCheck = new ArrayList<>(allMutableCells);
|
||||
Random rand = new Random();
|
||||
|
||||
Reference in New Issue
Block a user