Rahul Sharma (Editor)

Anti unification (computer science)

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

Anti-unification is the process of constructing a generalization common to two given symbolic expressions. As in unification, several frameworks are distinguished depending on which expressions (also called terms) are allowed, and which expressions are considered equal. If variables representing functions are allowed in an expression, the process is called higher-order anti-unification, otherwise first-order anti-unification. If the generalization is required to have an instance literally equal to each input expression, the process is called syntactical anti-unification, otherwise E-anti-unification, or anti-unification modulo theory.

Contents

An anti-unification algorithm should compute for given expressions a complete, and minimal generalization set, that is, a set covering all generalizations, and containing no redundant members, respectively. Depending on the framework, a complete and minimal generalization set may have one, finitely many, or possibly infinitely many members, or may not exist at all; it cannot be empty, since a trivial generalization exists in any case. For first-order syntactical anti-unification, Gordon Plotkin gave an algorithm that computes a complete and minimal singleton generalization set containing the so-called least general generalization (lgg).

Anti-unification should not be confused with dis-unification. The latter means the process of solving systems of inequations, that is of finding values for the variables such that all given inequations are satisfied. This task is quite different from finding generalizations.

Prerequisites

Formally, an anti-unification approach presupposes

  • An infinite set V of variables. For higher-order anti-unification, it is convenient to choose V disjoint from the set of lambda-term bound variables.
  • A set T of terms such that VT. For first-order and higher-order anti-unification, T is usually the set of first-order terms (terms built from variable and function symbols) and lambda terms (terms containing some higher-order variables), respectively.
  • An equivalence relation on T , indicating which terms are considered equal. For higher-order anti-unification, usually t u if t and u are alpha equivalent. For first-order E-anti-unification, reflects the background knowledge about certain function symbols; for example, if is considered commutative, t u if u results from t by swapping the arguments of at some (possibly all) occurrences. If there is no background knowledge at all, then only literally, or syntactically, identical terms are considered equal.
  • First-order term

    Given a set V of variable symbols, a set C of constant symbols and sets F n of n -ary function symbols, also called operator symbols, for each natural number n 1 , the set of (unsorted first-order) terms T is recursively defined to be the smallest set with the following properties:

  • every variable symbol is a term: VT,
  • every constant symbol is a term: CT,
  • from every n terms t1,…,tn, and every n-ary function symbol fFn, a larger term f ( t 1 , , t n ) can be built.
  • For example, if x ∈ V is a variable symbol, 1 ∈ C is a constant symbol, and add ∈ F2 is a binary function symbol, then x ∈ T, 1 ∈ T, and (hence) add(x,1) ∈ T by the first, second, and third term building rule, respectively. The latter term is usually written as x+1, using Infix notation and the more common operator symbol + for convenience.

    Substitution

    A substitution is a mapping σ : V T from variables to terms; the notation { x 1 t 1 , , x k t k } refers to a substitution mapping each variable x i to the term t i , for i = 1 , , k , and every other variable to itself. Applying that substitution to a term t is written in postfix notation as t { x 1 t 1 , , x k t k } ; it means to (simultaneously) replace every occurrence of each variable x i in the term t by t i . The result of applying a substitution σ to a term t is called an instance of that term t. As a first-order example, applying the substitution { x h ( a , y ) , z b } to the term

    Generalization, specialization

    If a term t has an instance equivalent to a term u , that is, if t σ u for some substitution σ , then t is called more general than u , and u is called more special than, or subsumed by, t . For example, x a is more general than a b if is commutative, since then ( x a ) { x b } = b a a b .

    If is literal (syntactic) identity of terms, a term may be both more general and more special than another one only if both terms differ just in their variable names, not in their syntactic structure; such terms are called variants, or renamings of each other. For example, f ( x 1 , a , g ( z 1 ) , y 1 ) is a variant of f ( x 2 , a , g ( z 2 ) , y 2 ) , since f ( x 1 , a , g ( z 1 ) , y 1 ) { x 1 x 2 , y 1 y 2 , z 1 z 2 } = f ( x 2 , a , g ( z 2 ) , y 2 ) and f ( x 2 , a , g ( z 2 ) , y 2 ) { x 2 x 1 , y 2 y 1 , z 2 z 1 } = f ( x 1 , a , g ( z 1 ) , y 1 ) . However, f ( x 1 , a , g ( z 1 ) , y 1 ) is not a variant of f ( x 2 , a , g ( x 2 ) , x 2 ) , since no substitution can transform the latter term into the former one, although { x 1 x 2 , z 1 x 2 , y 1 x 2 } achieves the reverse direction. The latter term is hence properly more special than the former one.

    A substitution σ is more special than, or subsumed by, a substitution τ if x σ is more special than x τ for each variable x . For example, { x f ( u ) , y f ( f ( u ) ) } is more special than { x z , y f ( z ) } , since f ( u ) and f ( f ( u ) ) is more special than z and f ( z ) , respectively.

    Anti-unification problem, generalization set

    An anti-unification problem is a pair t 1 , t 2 of terms. A term t is a common generalization, or anti-unifier, of t 1 and t 2 if t σ 1 t 1 and t σ 2 t 2 for some substitutions σ 1 , σ 2 . For a given anti-unification problem, a set S of anti-unifiers is called complete if each generalization subsumes some term t S ; the set S is called minimal if none of its members subsumes another one.

    First-order syntactical anti-unification

    The framework of first-order syntactical anti-unification is based on T being the set of first-order terms (over some given set V of variables, C of constants and F n of n -ary function symbols) and on being syntactic equality. In this framework, each anti-unification problem t 1 , t 2 has a complete, and obviously minimal, singleton solution set { t } . Its member t is called the least general generalization (lgg) of the problem, it has an instance syntactically equal to t 1 and another one syntactically equal to t 2 . Any common generalization of t 1 and t 2 subsumes t . The lgg is unique up to variants: if S 1 and S 2 are both complete and minimal solution sets of the same syntactical anti-unification problem, then S 1 = { s 1 } and S 2 = { s 2 } for some terms s 1 and s 2 , that are renamings of each other.

    Plotkin has given an algorithm to compute the lgg of two given terms. It presupposes an injective mapping ϕ : T × T V , that is, a mapping assigning each pair s , t of terms an own variable ϕ ( s , t ) , such that no two pairs share the same variable. The algorithm consists of two rules:

    For example, ( 0 0 ) ( 4 4 ) ( 0 4 ) ( 0 4 ) ϕ ( 0 , 4 ) ϕ ( 0 , 4 ) x x ; this least general generalization reflects the common property of both inputs of being square numbers.

    Plotkin used his algorithm to compute the "relative least general generalization (rlgg)" of two clause sets in first-order logic, which was the basis of the Golem approach to inductive logic programming.

    First-order anti-unification modulo theory

  • Jacobson, Erik (Jun 1991), Unification and Anti-Unification, Technical Report 
  • Østvold, Bjarte M. (Apr 2004), A Functional Reconstruction of Anti-Unification, NR Note, DART/04/04, Norwegian Computing Center 
  • Boytcheva, Svetla; Markov, Zdravko (2002). "An Algorithm for Inducing Least Generalization Under Relative Implication". 
  • Kutsia, Temur; Levy, Jordi; Villaret, Mateu (2014). "Anti-Unification for Unranked Terms and Hedges" (PDF). Journal of Automated Reasoning. Springer. 52 (2): 155–190. doi:10.1007/s10817-013-9285-6.  Software.
  • Equational theories

  • One associative and commutative operation: Pottier, Loic (Feb 1989), Algorithms des completion et generalisation en logic du premier ordre ; Pottier, Loic (1989), Generalisation de termes en theorie equationelle – Cas associatif-commutatif, INRIA Report, 1056, INRIA 
  • Commutative theories: Baader, Franz (1991). "Unification, Weak Unification, Upper Bound, Lower Bound, and Generalization Problems". Proc. 4th Conf. on Rewriting Techniques and Applications (RTA). LNCS. 488. Springer. pp. 86–91. 
  • Free monoids: Biere, A. (1993), Normalisierung, Unifikation und Antiunifikation in Freien Monoiden (PDF), Univ. Karlsruhe, Germany 
  • Regular congruence classes: Heinz, Birgit (Dec 1995), Anti-Unifikation modulo Gleichungstheorie und deren Anwendung zur Lemmagenerierung, GMD Berichte, 261, TU Berlin, ISBN 3-486-23873-6 ; Burghardt, Jochen (2005). "E-Generalization Using Grammars" (PDF). Artificial Intelligence Journal. Elsevier. 165 (1): 1–35. doi:10.1016/j.artint.2005.01.008. 
  • A-, C-, AC-, ACU-theories with ordered sorts: Alpuente, Maria; Escobar, Santiago; Espert, Javier; Meseguer, Jose (2014). "A modular order-sorted equational generalization algorithm" (PDF). Information and Computation. Elsevier. 235: 98–136. doi:10.1016/j.ic.2014.01.006. 
  • First-order sorted anti-unification

  • Taxonomic sorts: Frisch, Alan M.; Page, David (1990). "Generalisation with Taxonomic Information". AAAI: 755–761. ; Frisch, Alan M.; Page Jr., C. David (1991). "Generalizing Atoms in Constraint Logic". Proc. Conf. on Knowledge Representation. ; Frisch, A.M.; Page, C.D. (1995). "Building Theories into Instantiation". In Mellish, C.S. Proc. 14th IJCAI. Morgan Kaufmann. pp. 1210–1216. 
  • Feature terms: Plaza, E. (1995). "Cases as Terms: A Feature Term Approach to the Structured Representation of Cases". Proc. 1st International Conference on Case-Based Reasoning (ICCBR). LNCS. 1010. Springer. pp. 265–276. ISSN 0302-9743. 
  • Idestam-Almquist, Peter (Jun 1993). "Generalization under Implication by Recursive Anti-Unification". Proc. 10th Conf. on Machine Learning. Morgan Kaufmann. pp. 151–158. 
  • Fischer, Cornelia (May 1994), PAntUDE – An Anti-Unification Algorithm for Expressing Refined Generalizations, Research Report, TM-94-04, DFKI 
  • A-, C-, AC-, ACU-theories with ordered sorts: see above
  • Nominal anti-unification

  • Baumgartner, Alexander; Kutsia, Temur; Levy, Jordi; Villaret, Mateu (Jun 2013). Nominal Anti-Unification. Proc. RTA 2015. Vol. 36 of LIPIcs. Schloss Dagstuhl, 57-73. Software.
  • Applications

  • Program analysis: Bulychev, Peter; Minea, Marius (2008). "Duplicate Code Detection Using Anti-Unification". ; Bulychev, Peter E.; Kostylev, Egor V.; Zakharov, Vladimir A. (2009). "Anti-Unification Algorithms and their Applications in Program Analysis". 
  • Code factoring: Cottrell, Rylan (Sep 2008), Semi-automating Small-Scale Source Code Reuse via Structural Correspondence, Univ. Calgary 
  • Induction proving: Heinz, Birgit (1994), Lemma Discovery by Anti-Unification of Regular Sorts, Technical Report, 94-21, TU Berlin 
  • Information Extraction: Thomas, Bernd (1999). "Anti-Unification Based Learning of T-Wrappers for Information Extraction". AAAI Technical Report. WS-99-11: 15–20. 
  • Case-based reasoning: Armengol, Eva; Plaza, Enric (2005). "Using Symbolic Descriptions to Explain Similarity on CBR". 
  • Anti-unification of trees and linguistic applications

  • Parse trees for sentences can be subject to least general generalization to derive a maximal common sub-parse trees for language learning. There are applications in search and text classification.
  • Parse thickets for paragraphs as graphs can be subject to least general generalization.
  • Operation of generalization commutes with the operation of transition from syntactic (parse trees) to semantic (symbolic expressions) level. The latter can then be subject to conventional anti-unification.
  • Higher-order anti-unification

  • Calculus of constructions: Pfenning, Frank (Jul 1991). "Unification and Anti-Unification in the Calculus of Constructions" (PDF). Proc. 6th LICS. Springer. pp. 74–85. 
  • Simply-typed lambda calculus (Input: Terms in the eta-long beta-normal form. Output: higher-order patterns): Baumgartner, Alexander; Kutsia, Temur; Levy, Jordi; Villaret, Mateu (Jun 2013). A Variant of Higher-Order Anti-Unification. Proc. RTA 2013. Vol. 21 of LIPIcs. Schloss Dagstuhl, 113-127. Software.
  • Restricted Higher-Order Substitutions: Wagner, Ulrich (Apr 2002), Combinatorically Restricted Higher Order Anti-Unification, TU Berlin ; Schmidt, Martin (Sep 2010), Restricted Higher-Order Anti-Unification for Heuristic-Driven Theory Projection (PDF), PICS-Report, 31-2010, Univ. Osnabrück, Germany, ISSN 1610-5389 
  • References

    Anti-unification (computer science) Wikipedia