splitting on demand in sat modulo theories
play

Splitting on Demand in SAT Modulo Theories Clark Barrett, Robert - PowerPoint PPT Presentation

Splitting on Demand in SAT Modulo Theories Clark Barrett, Robert Nieuwenhuis, Albert Oliveras, Cesare Tinelli New York Univ. Techn. Univ. Catalonia Univ. of Iowa LPAR06 November 17th, 2006, Phom Penh (Cambodia) LPAR06 - Phnom Penh


  1. Splitting on Demand in SAT Modulo Theories Clark Barrett, Robert Nieuwenhuis, Albert Oliveras, Cesare Tinelli New York Univ. Techn. Univ. Catalonia Univ. of Iowa LPAR’06 November 17th, 2006, Phom Penh (Cambodia) LPAR’06 - Phnom Penh (Cambodia) LPAR’06. Splitting on Demang in SAT Modulo Theories – p.1/18

  2. Overview of the talk Introduction to SMT Eager approach Lazy approach: Boolean engine DPLL( X ) + T -solver Inside the T -solver What does DPLL( X ) need from T -solver? Splitting on Demand Use of Splitting on Demand for Nelson-Oppen Conclusions LPAR’06 - Phnom Penh (Cambodia) LPAR’06. Splitting on Demang in SAT Modulo Theories – p.2/18

  3. Introduction to SMT Some problems are more naturally expressed in other logics than propositional logic, e.g: Software verification needs reasoning about equality, arithmetic, data structures, ... SMT consists of deciding the satisfiability of a (ground) FO formula with respect to a background theory T Example ( Equality with Uninterpreted Functions – EUF ): g ( a )= c ∧ ( f ( g ( a )) � = f ( c ) ∨ g ( a )= d ) ∧ c � = d Wide range of applications: Predicate abstraction Static analysis Model checking Scheduling Equivalence checking ... LPAR’06 - Phnom Penh (Cambodia) LPAR’06. Splitting on Demang in SAT Modulo Theories – p.3/18

  4. SMT - Eager approach vs lazy approach EAGER APPROACH: Methodology: translate problem into equisatisfiable propositional formula and use off-the-shelf SAT solver [Bryant, Velev, Pnueli, Lahiri, Seshia, Strichman, ...] Why “eager”? Search uses all theory information from the beginning Tools: UCLID [Lahiri, Seshia and Bryant] LAZY APPROACH: Methodology: integration of a SAT-solver with a theory solver Why “lazy”? Theory information used lazily when checking T -consistency of propositional models Tools: CVC-Lite, Yices, MathSAT, TSAT+, Barcelogic ... LPAR’06 - Phnom Penh (Cambodia) LPAR’06. Splitting on Demang in SAT Modulo Theories – p.4/18

  5. SMT - Lazy approach example Consider EUF and g ( a )= c ∧ ( f ( g ( a )) � = f ( c ) ∨ g ( a )= d ) ∧ c � = d ���� � �� � � �� � � �� � 3 1 4 2 Send { 1, 2 ∨ 3, 4 } to SAT solver LPAR’06 - Phnom Penh (Cambodia) LPAR’06. Splitting on Demang in SAT Modulo Theories – p.5/18

  6. SMT - Lazy approach example Consider EUF and g ( a )= c ∧ ( f ( g ( a )) � = f ( c ) ∨ g ( a )= d ) ∧ c � = d ���� � �� � � �� � � �� � 3 1 4 2 Send { 1, 2 ∨ 3, 4 } to SAT solver SAT solver returns model [ 1, 4 ] 2, LPAR’06 - Phnom Penh (Cambodia) LPAR’06. Splitting on Demang in SAT Modulo Theories – p.5/18

  7. SMT - Lazy approach example Consider EUF and g ( a )= c ∧ ( f ( g ( a )) � = f ( c ) ∨ g ( a )= d ) ∧ c � = d ���� � �� � � �� � � �� � 3 1 4 2 Send { 1, 2 ∨ 3, 4 } to SAT solver SAT solver returns model [ 1, 4 ] 2, Theory solver says T -inconsistent LPAR’06 - Phnom Penh (Cambodia) LPAR’06. Splitting on Demang in SAT Modulo Theories – p.5/18

  8. SMT - Lazy approach example Consider EUF and g ( a )= c ∧ ( f ( g ( a )) � = f ( c ) ∨ g ( a )= d ) ∧ c � = d ���� � �� � � �� � � �� � 3 1 4 2 Send { 1, 2 ∨ 3, 4 } to SAT solver SAT solver returns model [ 1, 4 ] 2, Theory solver says T -inconsistent Send { 1, 2 ∨ 3, 1 ∨ 2 ∨ 4 } to SAT solver 4, LPAR’06 - Phnom Penh (Cambodia) LPAR’06. Splitting on Demang in SAT Modulo Theories – p.5/18

  9. SMT - Lazy approach example Consider EUF and g ( a )= c ∧ ( f ( g ( a )) � = f ( c ) ∨ g ( a )= d ) ∧ c � = d ���� � �� � � �� � � �� � 3 1 4 2 Send { 1, 2 ∨ 3, 4 } to SAT solver SAT solver returns model [ 1, 4 ] 2, Theory solver says T -inconsistent Send { 1, 2 ∨ 3, 1 ∨ 2 ∨ 4 } to SAT solver 4, SAT solver returns model [ 1, 2, 3, 4 ] LPAR’06 - Phnom Penh (Cambodia) LPAR’06. Splitting on Demang in SAT Modulo Theories – p.5/18

  10. SMT - Lazy approach example Consider EUF and g ( a )= c ∧ ( f ( g ( a )) � = f ( c ) ∨ g ( a )= d ) ∧ c � = d ���� � �� � � �� � � �� � 3 1 4 2 Send { 1, 2 ∨ 3, 4 } to SAT solver SAT solver returns model [ 1, 4 ] 2, Theory solver says T -inconsistent Send { 1, 2 ∨ 3, 1 ∨ 2 ∨ 4 } to SAT solver 4, SAT solver returns model [ 1, 2, 3, 4 ] Theory solver says T -inconsistent LPAR’06 - Phnom Penh (Cambodia) LPAR’06. Splitting on Demang in SAT Modulo Theories – p.5/18

  11. SMT - Lazy approach example Consider EUF and g ( a )= c ∧ ( f ( g ( a )) � = f ( c ) ∨ g ( a )= d ) ∧ c � = d ���� � �� � � �� � � �� � 3 1 4 2 Send { 1, 2 ∨ 3, 4 } to SAT solver SAT solver returns model [ 1, 4 ] 2, Theory solver says T -inconsistent Send { 1, 2 ∨ 3, 1 ∨ 2 ∨ 4 } to SAT solver 4, SAT solver returns model [ 1, 2, 3, 4 ] Theory solver says T -inconsistent Send { 1, 2 ∨ 3, 4, 1 ∨ 2 ∨ 4, 1 ∨ 2 ∨ 3 ∨ 4 } to SAT solver LPAR’06 - Phnom Penh (Cambodia) LPAR’06. Splitting on Demang in SAT Modulo Theories – p.5/18

  12. SMT - Lazy approach example Consider EUF and g ( a )= c ∧ ( f ( g ( a )) � = f ( c ) ∨ g ( a )= d ) ∧ c � = d ���� � �� � � �� � � �� � 3 1 4 2 Send { 1, 2 ∨ 3, 4 } to SAT solver SAT solver returns model [ 1, 4 ] 2, Theory solver says T -inconsistent Send { 1, 2 ∨ 3, 1 ∨ 2 ∨ 4 } to SAT solver 4, SAT solver returns model [ 1, 2, 3, 4 ] Theory solver says T -inconsistent Send { 1, 2 ∨ 3, 4, 1 ∨ 2 ∨ 4, 1 ∨ 2 ∨ 3 ∨ 4 } to SAT solver SAT solver detects it UNSATISFIABLE LPAR’06 - Phnom Penh (Cambodia) LPAR’06. Splitting on Demang in SAT Modulo Theories – p.5/18

  13. SMT - Lazy approach optimizations Several optimizations for enhancing efficiency: Check T -consistency only of full propositional models LPAR’06 - Phnom Penh (Cambodia) LPAR’06. Splitting on Demang in SAT Modulo Theories – p.6/18

  14. SMT - Lazy approach optimizations Several optimizations for enhancing efficiency: Check T -consistency only of full propositional models Check T -consistency of partial assignment while being built LPAR’06 - Phnom Penh (Cambodia) LPAR’06. Splitting on Demang in SAT Modulo Theories – p.6/18

  15. SMT - Lazy approach optimizations Several optimizations for enhancing efficiency: Check T -consistency only of full propositional models Check T -consistency of partial assignment while being built Given a T -inconsistent assignment M , add ¬ M as a clause LPAR’06 - Phnom Penh (Cambodia) LPAR’06. Splitting on Demang in SAT Modulo Theories – p.6/18

  16. SMT - Lazy approach optimizations Several optimizations for enhancing efficiency: Check T -consistency only of full propositional models Check T -consistency of partial assignment while being built Given a T -inconsistent assignment M , add ¬ M as a clause Given a T -inconsistent assignment M , identify a T -inconsistent subset M 0 ⊆ M and add ¬ M 0 as a clause LPAR’06 - Phnom Penh (Cambodia) LPAR’06. Splitting on Demang in SAT Modulo Theories – p.6/18

  17. SMT - Lazy approach optimizations Several optimizations for enhancing efficiency: Check T -consistency only of full propositional models Check T -consistency of partial assignment while being built Given a T -inconsistent assignment M , add ¬ M as a clause Given a T -inconsistent assignment M , identify a T -inconsistent subset M 0 ⊆ M and add ¬ M 0 as a clause Upon a T -inconsistency, add clause and restart LPAR’06 - Phnom Penh (Cambodia) LPAR’06. Splitting on Demang in SAT Modulo Theories – p.6/18

  18. SMT - Lazy approach optimizations Several optimizations for enhancing efficiency: Check T -consistency only of full propositional models Check T -consistency of partial assignment while being built Given a T -inconsistent assignment M , add ¬ M as a clause Given a T -inconsistent assignment M , identify a T -inconsistent subset M 0 ⊆ M and add ¬ M 0 as a clause Upon a T -inconsistency, add clause and restart Upon a T -inconsistency, use the conflicting clause ¬ M 0 to backjump to some point where the assignment was still T -consistent, as in SAT-solvers. LPAR’06 - Phnom Penh (Cambodia) LPAR’06. Splitting on Demang in SAT Modulo Theories – p.6/18

  19. Overview of the talk Introduction to SMT Eager approach Lazy approach: Boolean engine DPLL( X ) + T -solver Inside the T -solver ⇐ What does DPLL( X ) need from T -solver? Splitting on Demand Use of Splitting on Demand for Nelson-Oppen Conclusions LPAR’06 - Phnom Penh (Cambodia) LPAR’06. Splitting on Demang in SAT Modulo Theories – p.6/18

  20. What does DPLL( X ) need from T -Solver? T -consistency check of a set of literals M , with: Explain of T -inconsistency: find (small) T -inconsistent subset of M [minimal wrt. size?, wrt. ⊆ ?] Incrementality: if l is added to M , check for M l faster than reprocessing M l from scratch. Theory propagation: find input T -consequences of M , with: Explain T-Propagate of l : find (small) subset of M that T -entails l (needed in conflict analysis). Backtrack n : undo last n literals added PAPER FOCUSES only on T -consistency checks LPAR’06 - Phnom Penh (Cambodia) LPAR’06. Splitting on Demang in SAT Modulo Theories – p.7/18

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