about summary refs log tree commit diff stats
path: root/Source/Solver.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Solver.h')
-rw-r--r--Source/Solver.h13
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
4class Puzzle;
5class Solver {
6public:
7 static int MAX_SOLUTIONS;
8 static std::vector<Puzzle> Solve(Puzzle& p);
9
10private:
11 static void SolveLoop(Puzzle& p, int x, int y, std::vector<Puzzle>& solutions);
12};
13