diff options
Diffstat (limited to 'Source/Solver.h')
-rw-r--r-- | Source/Solver.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/Source/Solver.h b/Source/Solver.h deleted file mode 100644 index 455d1eb..0000000 --- a/Source/Solver.h +++ /dev/null | |||
@@ -1,13 +0,0 @@ | |||
1 | #pragma once | ||
2 | #include <vector> | ||
3 | |||
4 | class Puzzle; | ||
5 | class Solver { | ||
6 | public: | ||
7 | static int MAX_SOLUTIONS; | ||
8 | static std::vector<Puzzle> Solve(Puzzle& p); | ||
9 | |||
10 | private: | ||
11 | static void SolveLoop(Puzzle& p, int x, int y, std::vector<Puzzle>& solutions); | ||
12 | }; | ||
13 | |||