MCPcopy Create free account
hub / github.com/dds-bridge/dds / PrintStatsDetail

Method PrintStatsDetail

library/src/ab_stats.cpp:273–287  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

271
272
273void 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
290void ABstats::PrintSumDetail(ofstream& fout) const

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected