1 / 40

Unification Algorithm ChuChen

Unification Algorithm ChuChen. Definition.

thelma
Download Presentation

Unification Algorithm ChuChen

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Unification AlgorithmChuChen

  2. Definition The unification problem in first-order logic can be expressed as follows: Given two terms containing some variables, find, if it exists, the simplest substitution (i.e., an assignment of some term to every variable) which makes the two terms equal. The resulting substitution is called the most general unifier .

  3. Example f(x1, h(x1), x2} = f(g(x3), x4, x3) б1 = ((g(x3), x1), (x3, x2), (h(g(x3), x4)} б2= ((g(a), x1), (a, x2), (a, x3), (h(g(a)), x4)}.

  4. Definition A= U Ai (Ai ∩ Aj= Ø, i ≠ j) i=0,1 ....n, be a ranked alphabet, where Ai contains the i-adic function symbols (the elements of A0 are constant symbols). Furthermore, let V be the alphabet of the variables.

  5. Terms The terms are defined recursively as follows: (1) constant symbols and variables are terms; (2) if t1 . . . . . tn (n ≥ 1) are terms and f ∈ An, then f(t1, . . . , tn) is a term.

  6. Substitution • A substitution б is a mapping from variables to terms, • A substitution can be represented by a finite set of ordered pairs б= {(t1, x1), (t2, x2 ) , . . . , (tm, Xm)} where ti are terms and xi are distinct variables, i = 1 , . . . , m.

  7. Substitution • To apply a substitution б to a term t, we simultaneously substitute all occurrences in t of every variable xi in a pair (ti, xi) of б with the corresponding term ti. We call the resulting term tб. • For instance, given a term t = f(x1, g(x2, a) and a substitution б = {(h(x2),x1), (b, x2)}, we have tб = f(h(x2), g(b), a) and tбб= f(h(b), g(b), a).

  8. Unifier • The standard unification problem can be written as an equation t' = t". A solution of the equation, called a unifier, is any substitution б, if it exists, which makes the two terms identical. For instance, two unifiers of the equation f(x1, h(x1), x2} = f(g(x3), x4, x3) are б1 = ((g(x3), x1), (x3, x2), (h(g(x3), x4)} and б2 = ((g(a), x1), (a, x2), (a, x3), (h(g(a)), x4)}.

  9. Sets of equations • In what follows it is convenient also to consider sets of equations: • t1’=t1’’, ……… tj’=tj’’, ………. tn’=tn’’, j=l . . . . . n.

  10. Transformations of Sets of Multi-equations • (1)Term Reduction. Let f(t1', t2' , . . . , tn',) = f(t1' ', t2' ' . . . . . tn' ' ), f ∈ An be an equation where both terms are not variables and where the two root function symbols are equal. The new set of equations is obtained by replacing this equation with the following ones: t1 ' = t1 ' ' t 2 ' = t2 ' ' ……….. ………… t n' = t n" • If n = 0, then f is a constant symbol, and the equation is simply erased.

  11. Transformations of Sets of Multi-equations • (2) Variable Elimination. Let x = t be an equation where x is a variable and t is any term (variable or not). The new set of equations is obtained by applying the substitution б= ((t, x)} to both terms of all other equations in the set (without erasing x = t).

  12. The MGU • A set of equations is said to be in solved form iff it satisfies the following conditions: (1) the equations are xj= tj, j = 1, . . . , k; (2) every variable which is the left member of some equation occurs only there. A set of equations in solved form has the obvious unifier ℓ ={(t1, x1), (t2, x2), …… , (tk, xk)}. If there is any other unifier, it can be obtained as ℓ = { ( t1, x1), (t2, x2) . . . . , (tk, xk)} U a where a is any substitution which does not rewrite variables xl . . . . , xk. Thus ℓ is called a most general unifier (mgu ).

  13. Algorithm 1 • (a) Select any equation of the form t=x where t is not a variable and x is a variable, and rewrite it as x=t • (b) Select any equation of the form • x=x • where x is variable, and erase it. • (c) Select any equation of the form t' = t"

  14. Algorithm 1 where t' and t" are not variables. If the two root function symbols are different, *for example f(x , y) ,g(x , y) stop with failure; else apply term reduction. //iteration

  15. Algorithm 1 • (d) Select any equation of the form x=t where x is a variable which occurs somewhere else in the set of equations and where t ≠ x. If x occurs in t, then stop with failure; otherwise, apply variable elimination.

  16. Related Definition • A multiset is a family of elements in which no ordering exists but in which many identical elements may occur. • A multi-equation is the generalization of an equation, and it allows us to group together many terms which should be unified. To represent multi-equations we use the notation S = M where the left-hand side S is a nonempty set of variables and the right-hand side M is a multi-set 1 of nonvariable terms.

  17. Example • An example is {x1, x2, x3} = (t1, t2). x1 = x2; x3 = x1; t1 = x1; x2 = t2; t1 = t2;

  18. Common Part • The common part of a multiset of terms M is a term which intuitively, is obtained by superimposing all terms of M and by taking the part which is common to all of them starting from the root. • For instance, given the multiset of terms (f(x1, g(a, f(x5, b))), f(h(c), g(x2, f(b, x5))), f(h(x4), g(x6, x3))), the common part is f(x1, g(x2, x3)). • See PDF Page 8.

  19. Frontier • The frontier is a set of multi-equations, where every multi-equation is associated with a leaf of the common part and consists of all sub terms (one for each term of M) corresponding to that leaf.

  20. Transformations of Sets of Multi-Equations • Multi-equation Reduction: Let Z be a set of multi-equations containing a multi-equation S = M such that M is nonempty and has a common part C and a frontier F. The new set Z' of multi-equations is obtained by replacing S = M with the union of the multi-equation S = (C) and of all the multi-equations of F: Z=(Z- {S=M})U{S=(C)} U F .

  21. Transformations of Sets of Multi-Equations • We say that a set Z of multi-equations is compact iff ∀(S =M), (S' =M') ∈Z: S∩ S' = Ø. • Compactification : Let Z be a noncompact set of multi-equations. Let R be a relation between pairs of multi-equations of Z such that (S = M) R (S' = M') iff S ∩S' ≠Ø, The relation R partitions theset Z into equivalence classes.

  22. Transformations of Sets of Multi-Equations • To obtain the final compact set Z', all multi-equations belonging to the same equivalence class are transformed into single multiequations by taking the union of their left-hand and right-hand sides.

  23. Structure • A system R is a pair (T, U), where T is a sequence and U is a set of multi-equations (either possibly empty): T part, that is, the triangular or solved part of R. U part, that is the unsolved part.

  24. Example • U: ={ {x} = (f(x1 ,g(x2, x3), x2, b), f(g(h(a, x5), x2), x1, h(a, x4), x4)), {x1} = Ø, {x2} =Ø , {x3} =Ø , {x4} =Ø , {x5} = Ø }; • T:().

  25. Algorithm 2 • Algorithm 2 • (1) repeat: • (1.1) Select a multi-equation S = M of U with M ≠Ø. • (1.2) Compute the common part C and the frontier F of M. If M has no common part, stop with failure (clash). • (1.3) If the left-hand sides of the frontier of M contain some variable of S, stop with failure (cycle). • (1.4) Transform U using multi-equation reduction on the selected multi-equation and compactification. • (1.5) Let S = {X1 . . . . . . Xn). Apply the substitution б= {(C, x1) . . . . . (C, xn)} to all terms in the right-hand side of the multi-equations of U. • (1.6) Transfer the multi-equation S = (C) from U to the end of T. until the U part of R contains only multi-equations, if any, with empty right-hand sides. • (2) Transfer all the multi-equations of U (all with M = Ø) to the end of T, and stop with success.

  26. Example • U: ={ {x} = (f(x1 ,g(x2, x3), x2, b), f(g(h(a, x5), x2), x1, h(a, x4), x4)), • {x1} = Ø, • (x2} = Ø, • {x3} = Ø, • (x4} = Ø, • {x5} = Ø • }; • T:().

  27. Example • After the first iteration of Algorithm 2 we get • U: ={ • {x} = (g(h(a, x5), x2), g(x2, x3)), • {x2} = {h(a, x4)}, • {x3} = Ø, • {x4} = (b), • {x5} = Ø • }; • T: ( {x} = (f(x1, x1, x2, x4))).

  28. Example • We now eliminate variable x2, obtaining • U: ={ • {x1} = (g(h(a, x5), h(a, x4)), g(h(a, x4), x3)), • {x3} =Ø, • {x4} = (b), • {x5} = Ø}; • T: =( {x} = ( f ( x1, x1, x2, x4)), • {x2} = (h(a, x4))).

  29. Improvements • We now define a relation on the classes Si of this partition: we say that Si < Sj iff there exists a variable of Si occurring in some term of Mj, where Mj is the right-hand side of the multi-equation whose left-hand side is Sj.

  30. Improvements • THEOREM: If a system R has a unifier, then the relation <* is a partial ordering. • PROOF: If Si < Sj , then, in all unifiers of the system, the term substituted for every variable in Si must be a strict subterm of the term substituted for every variable in Sj. Thus, if the system has a unifier, the graph of the relation < can not have cycles. Therefore, its transitive closure must be a partial ordering.

  31. Improvements • COROLLARY: If the system R has a unifier and its U part is nonempty, there exists a multi-equation S = M such that the variables in S do not occur elsewhere in U. • PROOF: Let S = M be a multi-equation such that S is "on top" of the partial ordering < (i.e., ~∃Si , S < Si). The variables in S occur neither in the other left-hand sides of U (since they are disjoint) nor in any right member Mi of U, since otherwise S < Si.

  32. Algorithm 3 • (1) repeat • (1.1) Select a multi-equation S = M of U such that the variables in S do not occur • elsewhere in U. If a multi-equation with this property does not exist, stop with • failure (cycle). • (1.2) if M is empty • then • transfer this multi-equation from U to the end of T. • else begin • (1.2.1) Compute the common part C and the frontier F of M. If M has • no common part, stop with failure (clash). • (1.2.2) Transform U using multi-equation reduction on the selected • Multi-equation and compactification. • (1.2.3) Transfer the multi-equation S = (C) from U to the end of T. • end • until the U part of R • (2) stop with success.

  33. The Counter • In this section we show how to implement efficiently the operation of selecting a multi-equation "on top" of the partial ordering in step (1.1) of Algorithm 3. • The idea is to associate with every multi-equation a counter which contains the number of other occurrences in U of the variables in its left-hand side.

  34. The Counter • This counter is initialized by scanning the whole U part at the beginning. • A multi-equation whose counter is set to zero is on top of the partial ordering and it is first to be selected.

  35. Improvements • U: = • { • [0] {x} =(f(x1 ,g(x2, x3), x2, b), f(g(h(a, x5), x2),x1 ,h(a, x4), x4)), • [2] {x1} = Ø, • [3] {x2} = Ø, • [1] (x3} = Ø, • [2] {x4} = Ø, • [1] {x5} = Ø • }; • T:( ).

  36. Improvements • The next steps are as follows: • U:= { • [0] {x1} = (g(h(a, x5), x2), g(x2, x3)), • [2] {x2} = (h(a, x4)), • [1] (x3) = Ø, • [1] {x4} = (b), • [1] {x5} = Ø}; • T: { {x} = (f(x1, x1, x2, x4))}.

  37. Improvements • U: ={ • [0] {x2, x3} = (h(a, x4), h(a, x5)), • [1] {x4} = (b), • [1] {x5} = Ø • }; • T:= ({x} = (f(x1, x1, x2, x4)), • {x1} = (g(x2, x3))).

  38. Consistency • In the case of nonunifying data, Algorithm 3 can stop with failure in two ways: • (1) in step (1.1) if a cycle has been detected, (2) in step (1.2.1) if a clash occurs. • The latter kind of failure can be detected without altering the structure of the algorithm.

  39. Consistency Checker • Let us first give the following definition. Two terms are consistent : iff either at least one of them is a variable or they are both none variable terms with the same root function symbol and pair wise consistent arguments.

  40. Consistency Checker • A multi-term can be either empty or of the form f(P1 . . . . . Pn) where f ∈ An , and Pi (i = 1 . . . . . n) is a pair (Si, Mi) consisting of a set of variables Si and a multi-term Mi . Furthermore, Si and Mi can not both be empty. • For instance, the multi-set of consistent terms (f(x, g(a, y)), f(b, x), f(x, y)) can be represented with the multi-term : f(({x}, b), ({x , y},g((Ø, a), ({y}, Ø)))).

More Related