From 070ecdba8bbca6578bc44b24c9b9dd3831ee70a8 Mon Sep 17 00:00:00 2001 From: Raphael Maenle <17550607+g-spacewhale@users.noreply.github.com> Date: Wed, 10 Jan 2018 17:40:12 +0100 Subject: [PATCH] changed to solve real puzzle --- Source/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/main.cpp b/Source/main.cpp index 3ef636d..7f71bf6 100644 --- a/Source/main.cpp +++ b/Source/main.cpp @@ -5,7 +5,7 @@ int LogEntry::randomed(0); int main() { - unsigned int cols=4,rows=5; + unsigned int cols=36,rows=28; vector log; Puzzle puzzleMat(cols, rows); @@ -15,7 +15,7 @@ int main() return 0; } - puzzleMat.createRandomBox(); + //puzzleMat.createRandomBox(); cout << "Solving Puzzle now..."; while(next(log, puzzleMat));