Skip to content
Snippets Groups Projects
Commit c19fd6af authored by Franck Dary's avatar Franck Dary
Browse files

Changed how default value is now _ for tapes

parent 637c71b4
No related branches found
No related tags found
No related merge requests found
......@@ -202,7 +202,7 @@ void Config::printAsOutput(FILE * output, int dataIndex, int realIndex)
for (unsigned int j = 0; j < tapes.size(); j++)
{
if(bd.mustPrintLine(j))
toPrint.emplace_back(tapes[j][dataIndex-head].empty() ? "0" : tapes[j][dataIndex-head].c_str(), tapes[j].getEntropy(dataIndex-head));
toPrint.emplace_back(tapes[j][dataIndex-head].empty() ? "_" : tapes[j][dataIndex-head].c_str(), tapes[j].getEntropy(dataIndex-head));
}
ProgramOutput::instance.addLine(toPrint, realIndex);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment