stephb9959
2022-08-29 13:42:34 -07:00
parent 06bb8cebbe
commit 4bb5ee0b86

View File

@@ -30,7 +30,9 @@ namespace OpenWifi {
auto min_timestamp = std::min_element(points.begin(),points.end(),min_point_timestamp);
auto max_timestamp = std::max_element(points.begin(),points.end(),min_point_timestamp);
std::cout << "Max-buckets: " << max_buckets->second << " min timestamp:" << min_timestamp->timestamp << " max timestamp:" << max_timestamp->timestamp << " interval: " << ((max_timestamp-min_timestamp) / max_buckets->second) << std::endl;
std::cout << "Max-buckets: " << max_buckets->second << " min timestamp:" << min_timestamp->timestamp <<
" max timestamp:" << max_timestamp->timestamp << " interval: " <<
((max_timestamp->timestamp-min_timestamp->timestamp) / max_buckets->second) << std::endl;
return max_buckets->second;