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

Method print_node_stats_impl

library/src/trans_table/trans_table_s.cpp:995–1008  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

993
994
995auto TransTableS::print_node_stats_impl(ofstream& fout) const -> void
996{
997 fout << "Report of generated PosSearch nodes per trick level.\n";
998 fout << "Trick level 13 is highest level with all 52 cards.\n";
999 fout << string(51, '-') << "\n";
1000
1001 fout << setw(5) << "Trick" <<
1002 setw(14) << right << "Created nodes" << "\n";
1003
1004 for (int k = 13; k > 0; k--)
1005 fout << setw(5) << k << setw(14) << aggr_len_sets_[k - 1] << "\n";
1006
1007 fout << endl;
1008}
1009
1010
1011auto TransTableS::print_reset_stats_impl(ofstream& fout) const -> void

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected