| 271 | |
| 272 | |
| 273 | void ABstats::PrintStatsDetail( |
| 274 | ofstream& fout, |
| 275 | const int depth) const |
| 276 | { |
| 277 | if (ABsides[1].list[depth] == 0 && ABsides[0].list[depth] == 0) |
| 278 | return; |
| 279 | |
| 280 | fout << setw(2) << depth << |
| 281 | setw(7) << ABsides[1].list[depth] << |
| 282 | setw(7) << ABsides[0].list[depth]; |
| 283 | |
| 284 | for (int p = 0; p < AB_SIZE; p++) |
| 285 | fout << setw(6) << ABplaces[p].list[depth]; |
| 286 | fout << "\n"; |
| 287 | } |
| 288 | |
| 289 | |
| 290 | void ABstats::PrintSumDetail(ofstream& fout) const |
nothing calls this directly
no outgoing calls
no test coverage detected