When marking leaf nodes, if interface impact analysis is not required,
then avoid visiting the same diff node twice when walking the diff
graph. Allowing to visit the same diff node twice would be useful so
that the sub-graph of each interface diff node would be walked in full
to determine the impact of each leaf diff node on each interface. But
if such impact analysis is not required, then we can just visit each
diff graph node once and speed up things greatly in leaf node
reporting mode.
* src/abg-comparison.cc (corpus_diff::mark_leaf_diff_nodes): If
impact analysis is not required, visit each node just once.
Signed-off-by: Dodji Seketeli <dodji@redhat.com>
context()->forget_visited_diffs();
bool s = context()->visiting_a_node_twice_is_forbidden();
context()->forbid_visiting_a_node_twice(true);
- context()->forbid_visiting_a_node_twice_per_interface(true);
+ if (context()->show_impacted_interfaces())
+ context()->forbid_visiting_a_node_twice_per_interface(true);
traverse(v);
context()->forbid_visiting_a_node_twice(s);
context()->forbid_visiting_a_node_twice_per_interface(false);