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

Method ctrack_result

include/ctrack.hpp:809–815  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

807 {
808 public:
809 ctrack_result(const ctrack_result_settings &settings, const std::chrono::high_resolution_clock::time_point &track_start_time, const std::chrono::high_resolution_clock::time_point &track_end_time) : settings(settings), track_start_time(track_start_time), track_end_time(track_end_time)
810 {
811 time_total = std::chrono::duration_cast<std::chrono::nanoseconds>(
812 track_end_time - track_start_time)
813 .count();
814 center_intervall_str = "[" + std::to_string(settings.non_center_percent) + "-" + std::to_string(100 - settings.non_center_percent) + "]";
815 }
816
817 template <typename StreamType>
818 void get_summary_table(StreamType &stream, bool use_color = false)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected