MCPcopy Create free account
hub / github.com/Pamphlett/Outram / save_problematic_frames

Function save_problematic_frames

include/dataio.hpp:22–31  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

20using namespace std;
21
22bool 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
33bool save_timing(std::ofstream &out,
34 std::vector<double> time_vec,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected