diff options
Diffstat (limited to 'Source/Solver.h')
-rw-r--r-- | Source/Solver.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Source/Solver.h b/Source/Solver.h index 09108c7..455d1eb 100644 --- a/Source/Solver.h +++ b/Source/Solver.h | |||
@@ -1,13 +1,10 @@ | |||
1 | #pragma once | 1 | #pragma once |
2 | #include <vector> | 2 | #include <vector> |
3 | 3 | ||
4 | #ifndef MAX_SOLUTIONS | ||
5 | #define MAX_SOLUTIONS 10000 | ||
6 | #endif | ||
7 | |||
8 | class Puzzle; | 4 | class Puzzle; |
9 | class Solver { | 5 | class Solver { |
10 | public: | 6 | public: |
7 | static int MAX_SOLUTIONS; | ||
11 | static std::vector<Puzzle> Solve(Puzzle& p); | 8 | static std::vector<Puzzle> Solve(Puzzle& p); |
12 | 9 | ||
13 | private: | 10 | private: |