From 7dc37d4edefbc7b44bac82c775e62b1d014cf9a9 Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Sun, 28 Feb 2021 15:11:45 -0500 Subject: [PATCH] Solve for board size 6. --- src/main.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.d b/src/main.d index 450cb4f..ecbbf02 100644 --- a/src/main.d +++ b/src/main.d @@ -8,7 +8,7 @@ int main(string[] args) } else { - Solver s = new Solver(3); + Solver s = new Solver(6); s.solve(); } return 0;