added hardest puzzle #evafornoobs. does not compute

This commit is contained in:
g-spacewhale
2017-11-19 23:03:11 +01:00
parent aa00553bdb
commit 772a1d815a
2 changed files with 411 additions and 403 deletions

View File

@ -1,14 +1,15 @@
#define MAX_ABSTRAX 1
#define structdebug
#include "header.h"
#include "header.h"
#include "../Codicil/test_puzzle_long40x40.h"
int main()
{
int cols=10, rows=10;
int cols=40, rows=40;
//some basic part stuff
vector<Part> myFirstPuzzle;
Part myFirstPart;
@ -20,12 +21,15 @@ int main()
myRandomBox.createRandomPuzzle();
vector<PuzzlePiece> myFirstBox = myRandomBox.shuffle();
//undo everything and make this puzzle fucking imba hard!!!
//need 40x40 for this, so check your status
makehard4040puzzle(myFirstBox);
//some advanced solver stuff
vector<LogEntry> log;
vector<PuzzlePiece*> p_myFirstBox;
cout << "original puzzle: " << endl;
myRandomBox.printPuzzle();
cout << endl;