Skip to content
Snippets Groups Projects

Proper loop induced clone detection

Merged rarbore2 requested to merge clone_detection6 into main
10 files
+ 421
116
Compare changes
  • Side-by-side
  • Inline
Files
10
+ 20
0
@@ -77,6 +77,26 @@ impl DomTree {
.1
}
/*
* Find the node with the shallowest level in the dom tree amongst the nodes
* given.
*/
pub fn shallowest_amongst<I>(&self, x: I) -> NodeID
where
I: Iterator<Item = NodeID>,
{
x.map(|x| {
if x == self.root {
(0, x)
} else {
(self.idom[&x].0, x)
}
})
.min_by(|x, y| x.0.cmp(&y.0))
.unwrap()
.1
}
/*
* Find the least common ancestor in the tree of two nodes. This is an
* ancestor of the two nodes that is as far down the tree as possible.
Loading