introduction to unification theory
play

Introduction to Unification Theory Matching Temur Kutsia RISC, - PowerPoint PPT Presentation

Introduction to Unification Theory Matching Temur Kutsia RISC, Johannes Kepler University of Linz, Austria kutsia@risc.jku.at Overview Syntactic Matching Advanced Topics Overview Syntactic Matching Advanced Topics Matching Problem


  1. Introduction to Unification Theory Matching Temur Kutsia RISC, Johannes Kepler University of Linz, Austria kutsia@risc.jku.at

  2. Overview Syntactic Matching Advanced Topics

  3. Overview Syntactic Matching Advanced Topics

  4. Matching Problem ◮ Given: terms t and s . ◮ Find: a substitution σ such that t σ = s (syntactic matching). · ? s . ◮ Matching equation: t ≤ ◮ σ is called a matcher.

  5. Matching Problem Example · ? f ( g ( z ) , x ) . ◮ Matching problem: f ( x , y ) ≤ Matcher: σ = { x �→ g ( z ) , y �→ x } . · ? f ( x , a ) . ◮ Matching problem: f ( x , x ) ≤ No matcher. · ? f ( g ( g ( a )) , g ( a ) , b ) . ◮ Matching problem: f ( g ( x ) , x , y ) ≤ Matcher: { x �→ g ( a ) , y �→ b } . · ? f ( g ( x )) . ◮ Matching problem: f ( x ) ≤ Matcher: { x �→ g ( x ) } .

  6. Relating Matching and Unification ◮ Matching can be reduced to unification. · ? s each variable ◮ Simply replace in a matching problem t ≤ in s with a new constant. · ? f ( g ( z ) , x ) becomes the unification problem ◮ f ( x , y ) ≤ f ( x , y ) . = ? f ( g ( c z ) , c x ) . ◮ c z , c x : new constants. ◮ The unifier: { x �→ g ( c z ) , y �→ c x } . ◮ The matcher: { x �→ g ( z ) , y �→ z } . ◮ When t is ground, matching and unification coincide.

  7. Relating Matching and Unification ◮ Both matching and unification can be implemented in linear time. ◮ Linear implementation of matching is straightforward. ◮ Linear implementation of unification requires sophisticated data structures. ◮ Whenever efficiency is an issue, matching should be implemented separately from unification.

  8. Overview Syntactic Matching Advanced Topics

  9. Tree Pattern Matching ◮ Matching is needed in rewriting, functional programming, querying, etc. ◮ Often the following problem is required to be solved: ◮ Given a ground term s (subject) and a term p (pattern) ◮ Find all subterms in s to which p matches. ◮ Notation: p ≪ ? s . ◮ In this lecture: An algorithm to solve this problem. ◮ Terms are represented as trees.

  10. Matching Working example: f ( f ( a , X ) , Y ) ≪ ? f ( f ( a , b ) , f ( f ( a , b ) , a )) .

  11. Tree Pattern Matching Matching the pattern tree to the subject tree. g f f f f f Y a a a f X b a a Subject tree Pattern tree 1

  12. Tree Pattern Matching Matching the pattern tree to the subject tree. Pattern tree 1. First match: g f f f f f Y a a a f X b a a Subject tree Pattern tree 1

  13. Tree Pattern Matching Matching the pattern tree to the subject tree. Pattern tree 1. Second match: g f f f f f Y a a a f X b a a Subject tree Pattern tree 1

  14. Tree Pattern Matching Matching the pattern tree to the subject tree. Pattern tree 2. Single match: f f f f f X a a a f X b a a Subject tree Pattern tree 2

  15. Tree Pattern Matching ◮ Pattern tree 1 in the example is linear: Every variable occurs only once. ◮ Pattern tree 2 is nonlinear: X occurs twice. ◮ Two steps for nonlinear tree matching: 1. Ignore multiplicity of variables (assume the pattern in linear) and do linear tree pattern matching. 2. Verify that the substitutions computed for multiple occurrences of a variable are identical: check consistency.

  16. Terms ◮ V : Set of variables. ◮ F : Set of function symbols of fixed arity. ◮ F ∩ V = ∅ . ◮ Constants: 0-ary function symbols. ◮ Terms: ◮ A variable or a constant is a term. ◮ If f ∈ F , f is n -ary, n > 0 , and t 1 , . . . , t n are terms, then f ( t 1 , . . . , t n ) is a term.

  17. Term Trees, Nodes, Node Labels, Edges, Edge labels Example f ( 1 ) f ( 1 ) 1 2 1 2 f ( 2 ) Y ( 3 ) f ( 2 ) f ( 3 ) 1 2 1 2 1 2 a ( 4 ) X ( 5 ) a ( 4 ) b ( 5 ) f ( 6 ) a ( 7 ) 1 2 a ( 8 ) a ( 9 ) The tree for f ( f ( a , X ) , Y ) The tree for f ( f ( a , b ) , f ( f ( a , a ) , a ))

  18. Term Trees, Nodes, Node Labels, Edges, Edge labels Example f ( 1 ) f ( 1 ) 1 2 1 2 f ( 2 ) Y ( 3 ) f ( 2 ) f ( 3 ) 1 2 1 2 1 2 a ( 4 ) X ( 5 ) a ( 4 ) b ( 5 ) f ( 6 ) a ( 7 ) 1 2 a ( 8 ) a ( 9 ) Node

  19. Term Trees, Nodes, Node Labels, Edges, Edge labels Example f ( 1 ) f ( 1 ) 1 2 1 2 f ( 2 ) Y ( 3 ) f ( 2 ) f ( 3 ) 1 2 1 2 1 2 a ( 4 ) X ( 5 ) a ( 4 ) b ( 5 ) f ( 6 ) a ( 7 ) 1 2 a ( 8 ) a ( 9 ) Node label

  20. Term Trees, Nodes, Node Labels, Edges, Edge labels Example f ( 1 ) f ( 1 ) 1 2 1 2 f ( 2 ) Y ( 3 ) f ( 2 ) f ( 3 ) 1 2 1 2 1 2 a ( 4 ) X ( 5 ) a ( 4 ) b ( 5 ) f ( 6 ) a ( 7 ) 1 2 a ( 8 ) a ( 9 ) Edge

  21. Term Trees, Nodes, Node Labels, Edges, Edge labels Example f ( 1 ) f ( 1 ) 1 2 1 2 f ( 2 ) Y ( 3 ) f ( 2 ) f ( 3 ) 1 2 1 2 1 2 a ( 4 ) X ( 5 ) a ( 4 ) b ( 5 ) f ( 6 ) a ( 7 ) 1 2 a ( 8 ) a ( 9 ) Edge label

  22. Labeled Path ◮ Labeled path lp ( n 1 , n q ) in a term tree from the node n 1 to the node n q : A string formed by alternatively concatenating the node and edge labels from n 1 to n q .

  23. Labeled Path Example f ( 1 ) 1 2 f ( 2 ) f ( 3 ) 1 2 1 2 a ( 4 ) b ( 5 ) f ( 6 ) a ( 7 ) 1 2 a ( 8 ) a ( 9 ) Labeled path from 1 to 8: lp ( 1 , 8 ) = f 2 f 1 f 1 a

  24. Euler Chains and Strings ◮ Euler chain for a term tree—a string of nodes obtained as follows: f ( 1 ) f ( 1 ) 1 2 1 2 f ( 2 ) Y ( 3 ) f ( 2 ) f ( 3 ) 1 2 1 2 1 2 a ( 4 ) X ( 5 ) a ( 4 ) b ( 5 ) f ( 6 ) a ( 7 ) 1 2 a ( 8 ) a ( 9 ) 124252131 12425213686963731

  25. Euler Chains and Strings ◮ Properties of Euler chains a string of node labels obtained as follows: f ( 1 ) f ( 1 ) 1 2 1 2 f ( 2 ) Y ( 3 ) f ( 2 ) f ( 3 ) 1 2 1 2 1 2 a ( 4 ) X ( 5 ) a ( 4 ) b ( 5 ) f ( 6 ) a ( 7 ) 1 2 a ( 8 ) a ( 9 ) The leaves occur only once: 124252131 12425213686963731

  26. Euler Chains and Strings ◮ Properties of Euler chains a string of node labels obtained as follows: f ( 1 ) f ( 1 ) 1 2 1 2 f ( 2 ) Y ( 3 ) f ( 2 ) f ( 3 ) 1 2 1 2 1 2 a ( 4 ) X ( 5 ) a ( 4 ) b ( 5 ) f ( 6 ) a ( 7 ) The subchain between the 1 2 first and last occurrence of a node is a ( 8 ) a ( 9 ) the chain of the subtree rooted at that node: 124252131 12425213686963731

  27. Euler Chains and Strings ◮ Properties of Euler chains a string of node labels obtained as follows: f ( 1 ) f ( 1 ) 1 2 1 2 f ( 2 ) Y ( 3 ) f ( 2 ) f ( 3 ) 1 2 1 2 1 2 a ( 4 ) X ( 5 ) a ( 4 ) b ( 5 ) f ( 6 ) a ( 7 ) 1 2 a ( 8 ) a ( 9 ) A node with n children occurs n + 1 times 124252131 12425213686963731

  28. Euler Chains and Strings ◮ Euler strings: Replace nodes in Euler chains with node labels. f ( 1 ) f ( 1 ) 1 2 1 2 f ( 2 ) Y ( 3 ) f ( 2 ) f ( 3 ) 1 2 1 2 1 2 a ( 4 ) X ( 5 ) a ( 4 ) b ( 5 ) f ( 6 ) a ( 7 ) 1 2 a ( 8 ) a ( 9 ) ffafXffYf ffafbffffafaffaff

  29. Tree Pattern Matching: Idea ◮ Instead of using the tree structure, the algorithm operates on Euler chains and Euler strings. ◮ To declare a match of the pattern tree at a subtree of the subject tree, the algorithm ◮ verifies whether their Euler strings are identical after replacing the variables in the pattern by Euler strings of appropriate terms. ◮ To justify this approach, Euler strings have to be related to the tree structures. Theorem Two term trees are equivalent (i.e. they represent the same term) iff their corresponding Euler strings are identical.

  30. Nonlinear Tree Pattern Matching: Ideas Putting the ideas together: 1. Ignore multiplicity of variables (assume the pattern is linear) and do linear tree pattern matching. 2. Verify that the substitutions computed for multiple occurrences of a variable are identical: check consistency. 3. Instead of trees, operate on their Euler strings.

  31. Notation ◮ s : Subject tree. ◮ p : Pattern tree. ◮ C s and E s : Euler chain and Euler string for the subject tree. ◮ C p and E p : Euler chain and Euler string for the pattern tree. ◮ n : Size of s . ◮ m : Size of p . ◮ k : Number of variables in p . ◮ K : The set of all root-to-variable-leaf pathes in p .

  32. Step 1. Linear Tree Pattern Matching ◮ Let v 1 , . . . , v k be the variables in p . ◮ v 1 , . . . , v k appear only once in E p , because ◮ only leaves are labeled with variables, ◮ each leaf appears exactly once in the Euler string, and ◮ each variable occurs exactly once in p (linearity).

  33. Step 1. Linear Tree Pattern Matching We start with a simple algorithm. ◮ E s is stored in an array. ◮ Split E p into k + 1 strings, denoted σ 1 , . . . , σ k + 1 , by removing variables. ◮ ffafXffYf splits into σ 1 = ffaf , σ 2 = ff , and σ 3 = f . ◮ Construct Boolean tables M 1 , . . . , M k , each having | E s | entries: � 1 if there is a match for σ i in E s starting at pos. j M i [ j ] = otherwise. 0

  34. Step 1. Linear Tree Pattern Matching Example ◮ E p = ffafXffYf , σ 1 = ffaf , σ 2 = ff , σ 3 = f , E s = ffafbffffafaffaff . ◮ M 1 = 10000001000010000 ( ffafbffffafaffaff ). ◮ M 2 = 10000111000010010 ( ffafbffffafaffaff ). ◮ M 3 = 11010111100011011 ( ffafbffffafaffaff ).

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend