printHeader() ist verständlicher
This commit is contained in:
parent
411b4e7e59
commit
9538c34c66
1 changed files with 3 additions and 2 deletions
|
@ -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, '-');
|
||||
|
|
Loading…
Reference in a new issue