MCPcopy Create free account
hub / github.com/AutonomousFieldRoboticsLab/SVIn / GetMax

Method GetMax

pose_graph/src/utils/Statistics.cpp:135–138  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

133}
134double Statistics::GetMin(std::string const& tag) { return GetMin(GetHandle(tag)); }
135double Statistics::GetMax(size_t handle) {
136 std::lock_guard<std::mutex> lock(Instance().mutex_);
137 return Instance().stats_collectors_[handle].Max();
138}
139double Statistics::GetMax(std::string const& tag) { return GetMax(GetHandle(tag)); }
140double Statistics::GetMedian(size_t handle) {
141 std::lock_guard<std::mutex> lock(Instance().mutex_);

Callers

nothing calls this directly

Calls 1

MaxMethod · 0.80

Tested by

no test coverage detected