Commit b36e44e1 authored by captainwong's avatar captainwong

random search

parent 9b32aa81
...@@ -310,7 +310,7 @@ inline bool random_search(bool cells[N][9], Helper* helper) { ...@@ -310,7 +310,7 @@ inline bool random_search(bool cells[N][9], Helper* helper) {
bool cells1[N][9]; bool cells1[N][9];
memcpy(cells1, cells, sizeof(cells1)); memcpy(cells1, cells, sizeof(cells1));
if (assign(cells1, k, val, helper)) { if (assign(cells1, k, val, helper)) {
if (search(cells1, helper)) { if (random_search(cells1, helper)) {
memcpy(cells, cells1, sizeof(cells1)); memcpy(cells, cells1, sizeof(cells1));
return true; return true;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment