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.h5
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
8class Puzzle; 4class Puzzle;
9class Solver { 5class Solver {
10public: 6public:
7 static int MAX_SOLUTIONS;
11 static std::vector<Puzzle> Solve(Puzzle& p); 8 static std::vector<Puzzle> Solve(Puzzle& p);
12 9
13private: 10private: