diff options
| author | Star Rauchenberger <fefferburbia@gmail.com> | 2021-08-21 17:18:02 -0400 |
|---|---|---|
| committer | Star Rauchenberger <fefferburbia@gmail.com> | 2021-08-21 17:18:02 -0400 |
| commit | ba04ac934dea549497e2e89fa7a9e5bc8723f5f8 (patch) | |
| tree | f852810377bfe663dfd73bedfaaf4dca8c657f37 /Source/Validator.h | |
| parent | c60df0e75e63f488d94fd744ad70df8124dc7724 (diff) | |
| download | witness-tutorializer-ba04ac934dea549497e2e89fa7a9e5bc8723f5f8.tar.gz witness-tutorializer-ba04ac934dea549497e2e89fa7a9e5bc8723f5f8.tar.bz2 witness-tutorializer-ba04ac934dea549497e2e89fa7a9e5bc8723f5f8.zip | |
Cleaned up a bunch of stuff I'm not using
Diffstat (limited to 'Source/Validator.h')
| -rw-r--r-- | Source/Validator.h | 27 |
1 files changed, 0 insertions, 27 deletions
| diff --git a/Source/Validator.h b/Source/Validator.h deleted file mode 100644 index 2a102dd..0000000 --- a/Source/Validator.h +++ /dev/null | |||
| @@ -1,27 +0,0 @@ | |||
| 1 | #pragma once | ||
| 2 | #include <vector> | ||
| 3 | #include <tuple> | ||
| 4 | |||
| 5 | #ifndef NEGATIONS_CANCEL_NEGATIONS | ||
| 6 | #define NEGATIONS_CANCEL_NEGATIONS true | ||
| 7 | #endif | ||
| 8 | |||
| 9 | #ifndef SIMPLE_POLYOMINOS | ||
| 10 | #define SIMPLE_POLYOMINOS true | ||
| 11 | #endif | ||
| 12 | |||
| 13 | #ifndef DISABLE_CACHE | ||
| 14 | #define DISABLE_CACHE false | ||
| 15 | #endif | ||
| 16 | |||
| 17 | struct Region{}; | ||
| 18 | class Puzzle; | ||
| 19 | struct Pos; | ||
| 20 | class Validator { | ||
| 21 | public: | ||
| 22 | static void Validate(Puzzle& p); | ||
| 23 | |||
| 24 | private: | ||
| 25 | static void RegionCheckNegations(Puzzle& p, const Region& r); | ||
| 26 | static std::vector<Pos> RegionCheck(Puzzle& p, const Region& r); | ||
| 27 | }; | ||
