fn group_clock_edges_by_time(
clock_edges_by_clock: Vec<(usize, Vec<f32>)>,
) -> Vec<(f32, Vec<usize>)>Expand description
Groups sparse per-clock edge lists into time-ordered (time, clock_indices) tuples.
This structure is used by Line mode to interleave coincident edges at the same time.