Removed lots of slack, edited map functions into dispatcher, puzzleMat missing

Removed overconstructed logic, changed vector to map. PuzzleMat object not defined yet, for implementation, make the functions that have already been called through it.
This commit is contained in:
Raphael Maenle
2017-12-20 18:23:39 +01:00
parent c885e472fb
commit ce5e007bc7
5 changed files with 53 additions and 497 deletions

View File

@ -10,11 +10,11 @@ int main()
unsigned int cols=5, rows=6;
//some basic random puzzle stuff
vector<PuzzlePiece> myFirstBox = createBox(coor(cols,rows));
vector<Part> myFirstBox = createBox(coor(cols,rows));
//some advanced solver stuff
vector<LogEntry> log;
vector<PuzzlePiece*> p_myFirstBox;
vector<Part*> p_myFirstBox;
//BoxClassify myFirstBox();
cout << endl;