printHeader() ist verständlicher

This commit is contained in:
Jonny007-MKD 2013-11-21 21:40:23 +01:00
parent 411b4e7e59
commit 9538c34c66
1 changed files with 3 additions and 2 deletions

View File

@ -25,8 +25,9 @@ void Wertetabelle::Print()
this->printPrimImplikanten(i); // => 0 0x1 4
cout << endl;
if (i > 0 && i % 20 == 0 && i - numElements > 5)
cout << this->makeHeader() << endl;
if (i > 0 && i % 15 == 0 && numElements - i > 5)
//cout << this->makeHeader() << endl;
printHeader();
}
cout << string(this->width, '-');