disproving confluence of term rewriting systems by
play

Disproving Confluence of Term Rewriting Systems by Interpretation - PowerPoint PPT Presentation

Disproving Confluence of Term Rewriting Systems by Interpretation and Ordering FroCoS 2013 Takahito Aoto (Tohoku University) Outline 1. Backgrounds: TRS and Confluence 2. Backgrounds: Proving (Non)-Confluence 3. Proving Non-Joinability by


  1. Disproving Confluence of Term Rewriting Systems by Interpretation and Ordering FroCoS 2013 Takahito Aoto (Tohoku University)

  2. Outline 1. Backgrounds: TRS and Confluence 2. Backgrounds: Proving (Non)-Confluence 3. Proving Non-Joinability by Interpretation 4. Proving Non-Joinability by Ordering 5. Implementation and Experiments

  3. Term Rewriting Systems (TRSs) Example: TRS modelling addition of natural numbers � +( 0 , y ) � → y R = → +( s ( x ) , y ) s (+( x, y )) Natural numbers 0 , 1 , 2 , . . . are represented by 0 , s ( 0 ) , s ( s ( 0 )) , . . . . • Computational model: Equational logic + Functional programs • Automated theorem proving: KB-completion, etc. • Automated verification: Termination, Confluence, etc. 1/24

  4. � +( 0 , y ) � → y R = +( s ( x ) , y ) → s (+( x, y )) Computation by reduction (“2 + 2 = 4”) → R +( s ( s ( 0 )) , s ( s ( 0 ))) s (+( s ( 0 ) , s ( s ( 0 )))) → R s ( s (+( 0 , s ( s ( 0 ))))) → R s ( s ( s ( s ( 0 )))) normal form LHS patterns of rewrite rules are replaced by the corresponding RHS patterns. 2/24

  5. � +( 0 , y ) � → y R = +( s ( x ) , y ) → s (+( x, y )) Computation by reduction (“2 + 2 = 4”) → R +( s ( s ( 0 )) , s ( s ( 0 ))) s (+( s ( 0 ) , s ( s ( 0 )))) → R s ( s (+( 0 , s ( s ( 0 ))))) → R s ( s ( s ( s ( 0 )))) normal form LHS patterns of rewrite rules are replaced by the corresponding RHS patterns. ∗ def → R t n ⇔ t 0 → R t 1 → R · · · → R t n t 0 2/24

  6. Confluence (Church-Rosser) t ∗ ∗ t 1 t 2 ∗ ∗ s 3/24

  7. Confluence (Church-Rosser) t ∗ ∗ t 1 t 2 ∗ ∗ s ∗ ∗ ∗ ∗ A TRS R is confluent if ← R ◦ → R ⊆ → R ◦ ← R , i.e. any two terms obtained from one term by reduction are joinable by reduction. 3/24

  8. Confluence (Church-Rosser) +( s ( 0 ) , +( s ( 0 ) , s ( 0 ))) +( s ( 0 ) , s (+( 0 , s ( 0 )))) s (+( 0 , +( 0 , s ( 0 ))) +( s ( 0 ) , s ( s ( 0 ))) s (+( s ( 0 ) , s ( 0 ))) ∗ ∗ s ( s ( s ( 0 ))) 4/24

  9. � +( 0 , y ) � → y R = Confluent +( s ( x ) , y ) → s (+( x, y ))   f ( x ) → g ( x )       g ( x ) → f ( x )   R = Not Confluent f ( x ) → a     g ( x ) → b     5/24

  10. (Non-)Confluence Criteria Long history of development... Decidable classes: Terminating [Knuth&Bendix, 1970], Ground [Oyamaguchi, 1987; Dauchet et al., 1990], Right-ground [Kaiser, 2005; Tiwari et al., 2005], Right-linear shallow [Tiwari, 2002; Critical Pair Godoy et al, 2003; Godoy&Tiwari, 2005]. Conditions for Left-linear TRSs: Orthogonal [Rosen, 1973], Left-linear development closed [Huet, 1980; Toyama, 1988; van Oostrom, 1997], Linear strongly closed [Huet, 1980], Parallel critical pairs [Toyama, 1981], Simultaneous critical pairs [Okui, 1998], Upside-parallel-closed or Outside-closed [Oyamaguchi&Ohta, 2004]. Modularity: Persistency [Toyama,1987; Aoto&Toyama,1997], Commutativity [Toyama,1988], Layer-preservation [Ohlebusch,1994] 6/24

  11. Conditions for Non-E-Overlapping TRSs: Simple-right- linear [Ohta&Oyamaguchi&Toyama, 1995], Strongly depth-preserving [Gomi&Oyamaguchi&Ohta, 1996], Strongly weight-preserving/depth- preserving root-E-closed [Gomi&Oyamaguchi&Ohta, 1998]. Decreasing Diagram [van Oostrom, 1997] Approach: rule- labelling [van Oostrom, 1997; Aoto, 2010; Hirokawa&Middeldorp; Others: Zankle&Middeldorp, 2011]. Weakly-non-overlapping non-collapsing shallow [Sakai&Ogawa, 2010], Reduction-preserving completion [Aoto&Toyama, 2012], Condition for relatively terminating TRSs [Klein&Hirokawa, 2012], Quasi-left-linear and parallel-closed [Suzuki&Aoto&Toyama, 2013]. Tools for proving/disproving confluence of TRSs: ACP, CSI, Saigawa, . . . 7/24

  12. Outline 1. Backgrounds: TRS and Confluence 2. Backgrounds: Disproving Confluence 3. Proving Non-Joinability by Interpretation 4. Proving Non-Joinability by Ordering 5. Implementation and Experiments

  13. Disproving Confluence of TRSs (1) • terminating TRSs (Knuth&Bendix, 1970) A terminating TRS is confluent iff all critical pairs are joinable. • relatively terminating TRSs (Klein&Hirokawa, 2012) Suppose S is confluent, R is terminating relative to S , and R and S are strongly non-overlapping. Then R∪S is confluent iff all S -critical pairs of R are ( R ∪ S ) -joinable. S -critical pairs include non-minimal instances. In general, S -critical pairs are not effectively computed. 8/24

  14. Disproving Confluence of TRSs (2) Decidable Classes • ground TRSs: polynomial [Comon et al., 2001] [Tiwari, 2002]; cubic [Falgenhauer, 2012] · · · · · · · · · · · · • linear shallow TRSs: polynomial [Godoy et al., 2003] • right-ground TRSs: exponential [Tiwari et al., 2005] • right-linear shallow TRSs: [Godoy&Tiwari, 2005] These decidable classes are rather restrictive. Except for some basic classes, decision procedures are very complex. So far, only implemented procedure seems to be the one for ground TRSs. Needs more investigation for using in confluence tools. 9/24

  15. Disproving Confluence of TRSs (3) Find terms t 1 , t 2 such that ∗ ∗ (1) s → t 1 and s → t 2 for some s , and (finding ’candidates’ for non-confluence witness) ∗ ∗ (2) t 1 → u and t 2 → u for no u , ∗ ∗ i.e. { u | t 1 → u } ∩ { v | t 2 → v } = ∅ . (proving non-joinability of ’candidates’) 10/24

  16. Disproving Confluence of TRSs (3) Find terms t 1 , t 2 such that ∗ ∗ (1) s → t 1 and s → t 2 for some s , and (finding ’candidates’ for non-confluence witness) ∗ ∗ (2) t 1 → u and t 2 → u for no u , ∗ ∗ i.e. { u | t 1 → u } ∩ { v | t 2 → v } = ∅ . (proving non-joinability of ’candidates’) We let the problem (1) untouched, and consider the problem (2). 10/24

  17. Disproving Confluence of TRSs (3) Find terms t 1 , t 2 such that ∗ ∗ (1) s → t 1 and s → t 2 for some s , and (finding ’candidates’ for non-confluence witness) ∗ ∗ (2) t 1 → u and t 2 → u for no u , ∗ ∗ i.e. { u | t 1 → u } ∩ { v | t 2 → v } = ∅ . (proving non-joinability of ’candidates’) We let the problem (1) untouched, and consider the problem (2). We abbreviate non-joinability of terms t 1 and t 2 (i.e. ∗ ∗ { u | t 1 → u } ∩ { v | t 2 → v } = ∅ ) as NJ ( t 1 , t 2 ) . 10/24

  18. Proving Non-Joinability by Tree Automata So far, the only serious approach for proving non-joinability is using tree automata approximation [Durand&Middeldorp, 1997] [Genet, 1998]. (1) Construct tree automata A 1 , A 2 such that { u | ∗ → u } ⊆ L ( A i ) ( i = 1 , 2 ) by tree automata t i approximation. (2) Check L ( A 1 ) ∩ L ( A 2 ) = ∅ . 11/24

  19. Proving Non-Joinability by Tree Automata So far, the only serious approach for proving non-joinability is using tree automata approximation [Durand&Middeldorp, 1997] [Genet, 1998]. (1) Construct tree automata A 1 , A 2 such that { u | ∗ → u } ⊆ L ( A i ) ( i = 1 , 2 ) by tree automata t i approximation. (2) Check L ( A 1 ) ∩ L ( A 2 ) = ∅ . Sometimes it is difficult to construct a well- approximated tree automaton. This work: another approach for proving non-joinability. 11/24

  20. Outline 1. Backgrounds: TRS and Confluence 2. Backgrounds: Disproving Confluence 3. Proving Non-Joinability by Interpretation 4. Proving Non-Joinability by Ordering 5. Implementation and Experiments

  21. Interpretation We first recall some standard definitions. An F -algebra A = � A, � f A � f ∈F � is a set A equipped with functions f A : A n → A for each n -ary function symbol f ∈ F . A valuation σ on a F -algebra A is a mapping σ : V → A . ] σ ∈ A of a term t ∈ T ( F , V ) is The interpretation [ [ t ] given by [ [ x ] ] σ = σ ( x ) ] σ = f A ([ [ [ f ( t 1 , . . . , t n )] [ t 1 ] ] σ , . . . , [ [ t n ] ] σ ) 12/24

  22. Interpretation for Non-Joinability If there exist an F -algebra and a valuation σ such that (i) u → R v implies [ ] σ � = [ [ u ] ] σ = [ [ v ] ] σ and (ii) [ [ t 1 ] [ t 2 ] ] σ , then NJ ( t 1 , t 2 ) . [ [ t 1 ] ] σ [ [ t 2 ] ] σ t 1 t 2 ∗ ∗ [ [ s ] ] σ s 13/24

  23. Interpretation for Non-Joinability If there exist an F -algebra and a valuation σ such that (i) u → R v implies [ ] σ � = [ [ u ] ] σ = [ [ v ] ] σ and (ii) [ [ t 1 ] [ t 2 ] ] σ , then NJ ( t 1 , t 2 ) . ∗ ∗ But, since t 0 → t 1 and t 0 → t 2 for some t 0 , there is no such an F -algebra for our candidates t 1 , t 2 . 13/24

  24. Interpretation for Non-Joinability If there exist an F -algebra and a valuation σ such that (i) u → R v implies [ [ u ] ] σ = [ [ v ] ] σ and (ii) [ [ t 1 ] ] σ � = [ [ t 2 ] ] σ , then NJ ( t 1 , t 2 ) . ∗ ∗ → t 1 and t 0 → t 2 for some t 0 , there is no But, since t 0 such an F -algebra for our candidates t 1 , t 2 . Idea: replace (i) by the following (i ′ ) (i ′ ) u → { l → r } v implies [ [ u ] ] σ = [ [ v ] ] σ for any usable rule l → r ∈ R . ∗ → R ◦ → { l → r } u Here, usable means it can happen t 1 ∗ → R ◦ → { l → r } u for some u (given in the next or t 2 slide). 13/24

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