| 20 | using namespace std; |
| 21 | |
| 22 | bool save_problematic_frames(std::ofstream &out, int src_index, int tgt_index) { |
| 23 | if (!out) { |
| 24 | return false; |
| 25 | } |
| 26 | |
| 27 | std::string space_delimiter = " "; |
| 28 | out << src_index << space_delimiter << tgt_index << std::endl; |
| 29 | |
| 30 | return true; |
| 31 | } |
| 32 | |
| 33 | bool save_timing(std::ofstream &out, |
| 34 | std::vector<double> time_vec, |
nothing calls this directly
no outgoing calls
no test coverage detected