Fixed errors due to no pictures in pieces folder

This commit is contained in:
TabDragon
2017-12-29 14:33:22 +01:00
parent 4c59e04fa7
commit cba4d204c8
7 changed files with 50 additions and 16 deletions

View File

@ -9,6 +9,12 @@ int main()
vector<LogEntry> log;
Puzzle puzzleMat(cols, rows);
if(!puzzleMat.PreProcessing())
{
cerr << "Error occured at PreProcessing!";
return 0;
}
puzzleMat.createRandomBox();
cout << "here" << endl;
puzzleMat.a1.printConstraintMatrix();