PuzzleSolver/Source/main.cpp
Raphael Maenle 882737bd30 Abstraction1 Komplett eingebunden - Probleme nun auf Dispatcherseite
Die Bilder sind in einem Ordner über dem Github abgespeichert, sieht man eh wohin die PATH zeigt. Bilder werden die "WORKING PIECES" verwendet.
2018-01-06 23:23:42 +01:00

26 lines
452 B
C++

#include "header.h"
int LogEntry::randomed(0);
int main()
{
unsigned int cols=36, rows=28;
vector<LogEntry> log;
Puzzle puzzleMat(cols, rows);
if(!puzzleMat.PreProcessing())
{
cerr << "Error occurred at PreProcessing!";
return 0;
}
//puzzleMat.createRandomBox();
puzzleMat.a1.printConstraintMatrix();
while(next(log, puzzleMat.p_myBox,puzzleMat));
puzzleMat.printPuzzle();
return 0;
}