nitc :: StaticAnalysis :: merge
Depends on the analysis performed.
# The merge operation on sets for confluence. # # Depends on the analysis performed. fun merge(s1, s2: FLOW): FLOW is abstract
# Perform set union (used for **some path** analysis). redef fun merge(s1, s2) do return s1.flow_union(s2)