removed comments form non working

This commit is contained in:
Raphael Maenle 2017-12-18 13:37:31 +01:00
parent ba4d757c5a
commit 0048f5b42d
2 changed files with 5 additions and 5 deletions

View File

@ -83,10 +83,10 @@ void solve(vector<LogEntry>& log, vector<PuzzlePiece*>& p_Box, Puzzle& puzzleMat
break; break;
} }
//capLogElements(log); capLogElements(log);
//calculateWorth(log); calculateWorth(log);
//calculateTrueDestructionPower(log,puzzleMat); calculateTrueDestructionPower(log,puzzleMat);
//calculateNewCombinedProbablility(log); calculateNewCombinedProbablility(log);
} }

View File

@ -24,7 +24,7 @@ int main()
Puzzle puzzleMat(cols, rows); Puzzle puzzleMat(cols, rows);
//vector<vector<PuzzlePiece*>> ab1class = abstractionLayer1classify(log, p_myFirstBox,puzzleMat); //vector<vector<PuzzlePiece*>> ab1class = abstractionLayer1classify(log, p_myFirstBox,puzzleMat);
//while(next(log, p_myFirstBox,puzzleMat)); while(next(log, p_myFirstBox,puzzleMat));
puzzleMat.printPuzzle(); puzzleMat.printPuzzle();
} }