| 993 | |
| 994 | |
| 995 | auto 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 | |
| 1011 | auto TransTableS::print_reset_stats_impl(ofstream& fout) const -> void |
nothing calls this directly
no outgoing calls
no test coverage detected