Fix Dominators::rank_partial_cmp to match documentation

The only use site is also updated accordingly and there is no change in
end-to-end behaviour.
This commit is contained in:
Tomasz Miąsko 2023-01-18 00:00:00 +00:00
parent 1f72129ffe
commit b8c5821ad8
2 changed files with 6 additions and 6 deletions

View file

@ -299,7 +299,7 @@ impl<Node: Idx> Dominators<Node> {
/// of two unrelated nodes will also be consistent, but otherwise the order has no
/// meaning.) This method cannot be used to determine if either Node dominates the other.
pub fn rank_partial_cmp(&self, lhs: Node, rhs: Node) -> Option<Ordering> {
self.post_order_rank[lhs].partial_cmp(&self.post_order_rank[rhs])
self.post_order_rank[rhs].partial_cmp(&self.post_order_rank[lhs])
}
}