| 180 | |
| 181 | |
| 182 | void ABstats::PrintHeaderDepth(ofstream& fout) const |
| 183 | { |
| 184 | fout << setw(5) << right << "Depth" << |
| 185 | setw(7) << "Nodes" << |
| 186 | setw(7) << "Cumul" << |
| 187 | setw(6) << "Cum%" << |
| 188 | setw(6) << "Cumc%" << |
| 189 | setw(7) << "Branch" << "\n"; |
| 190 | |
| 191 | fout << std::string(38, '-') << "\n"; |
| 192 | } |
| 193 | |
| 194 | |
| 195 | void ABstats::PrintStatsDepth( |
nothing calls this directly
no outgoing calls
no test coverage detected