MCPcopy Create free account
hub / github.com/Compaile/ctrack / result_as_string

Function result_as_string

include/ctrack.hpp:1225–1235  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1223 }
1224
1225 inline std::string result_as_string(ctrack_result_settings settings = {})
1226 {
1227 auto res = calc_stats_and_clear(settings);
1228 std::stringstream ss;
1229 ss << "Summary\n";
1230 res.get_summary_table(ss, false);
1231 ss << "Details\n";
1232 res.get_detail_table(ss, false, true);
1233
1234 return ss.str();
1235 }
1236
1237 inline ctrack_result_tables result_get_tables(ctrack_result_settings settings = {})
1238 {

Callers 3

measure_accuracyFunction · 0.85
measure_overheadFunction · 0.85

Calls 3

calc_stats_and_clearFunction · 0.85
get_summary_tableMethod · 0.80
get_detail_tableMethod · 0.80

Tested by

no test coverage detected