Function ruma_state_res::lexicographical_topological_sort
source ยท pub fn lexicographical_topological_sort<Id, F>(
graph: &HashMap<Id, HashSet<Id>>,
key_fn: F,
) -> Result<Vec<Id>>
Expand description
Sorts the event graph based on number of outgoing/incoming edges.
key_fn
is used as to obtain the power level and age of an event for breaking ties (together
with the event ID).