edit: now its up printmatrix

This commit is contained in:
Raphael Maenle 2017-12-22 23:30:05 +01:00
parent 12574279ce
commit ad3aa1295a

View File

@ -107,7 +107,7 @@ qualityVector AbstractionLayer_1::returnInBox(vector<Part>& PuzzleBox)
void AbstractionLayer_1::printConstraintMatrix() {
for (auto it1:m_constraintMatrix) {
for (auto it2:it1)
std::cout << "tempPiece = " << std::bitset<8>(it2.m_connections) << std::endl;
std::cout << std::bitset<8>(it2.m_connections) << " ";
std::cout << std::endl;
}
}