pub const MIN_REPORT_INTERVAL_MS: u64 = 1_000;Expand description
Minimum report interval (SRTT clamp floor).
Raised from 100ms to 1000ms: parent re-evaluation runs every 60s,
so 60 samples/cycle is more than sufficient for EWMA convergence (~10).
The cold-start phase uses DEFAULT_COLD_START_INTERVAL_MS (200ms) for
fast initial SRTT convergence before transitioning to this floor.