model based reasoning dpll t algorithmic reasoner first
play

Model-based reasoning DPLL(+ T ): algorithmic reasoner + first-order - PowerPoint PPT Presentation

Outline Model-based reasoning DPLL( + T ): algorithmic reasoner + first-order prover DPLL( + T ) + speculative inferences: Decision procedures Current and future work On Model-Based Reasoning 1 Recent Trends and Current Developments Maria


  1. Outline Model-based reasoning DPLL( Γ+ T ): algorithmic reasoner + first-order prover DPLL( Γ+ T ) + speculative inferences: Decision procedures Current and future work On Model-Based Reasoning 1 Recent Trends and Current Developments Maria Paola Bonacina Dipartimento di Informatica Universit` a degli Studi di Verona Verona, Italy September, 2013 1 Joint work with Leonardo de Moura Maria Paola Bonacina On Model-Based Reasoning

  2. Outline Model-based reasoning DPLL( Γ+ T ): algorithmic reasoner + first-order prover DPLL( Γ+ T ) + speculative inferences: Decision procedures Current and future work Model-based reasoning DPLL(Γ+ T ): algorithmic reasoner + first-order prover DPLL(Γ+ T ) + speculative inferences: Decision procedures Current and future work Maria Paola Bonacina On Model-Based Reasoning

  3. Outline Model-based reasoning DPLL( Γ+ T ): algorithmic reasoner + first-order prover DPLL( Γ+ T ) + speculative inferences: Decision procedures Current and future work The gist of this talk ◮ Automated reasoning from proofs to models ◮ Models are relevant to applications (e.g., program testing, program synthesis) ◮ Theorem provers that terminate on satisfiable inputs (Decision procedures) ◮ Trade-off between decidability and expressivity Maria Paola Bonacina On Model-Based Reasoning

  4. Outline Model-based reasoning DPLL( Γ+ T ): algorithmic reasoner + first-order prover DPLL( Γ+ T ) + speculative inferences: Decision procedures Current and future work Automated reasoning Artificial Computational Intelligence Logic Automated Reasoning Symbolic Computation ◮ Logico-deductive reasoning ◮ Other kinds: Probabilistic ... Maria Paola Bonacina On Model-Based Reasoning

  5. Outline Model-based reasoning DPLL( Γ+ T ): algorithmic reasoner + first-order prover DPLL( Γ+ T ) + speculative inferences: Decision procedures Current and future work Logico-deductive reasoning ◮ Proofs and Models ◮ Theorem Proving ◮ Validity: T | = ϕ ◮ Refutationally: T ∪ {¬ ϕ } unsatisfiable ◮ If not: T -model of ¬ ϕ , counter-example for ϕ ◮ Model Building ◮ Satisfiability: is there a T -model of ϕ ? ◮ If not: T ∪ { ϕ } unsatisfiable, T | = ¬ ϕ Maria Paola Bonacina On Model-Based Reasoning

  6. Outline Model-based reasoning DPLL( Γ+ T ): algorithmic reasoner + first-order prover DPLL( Γ+ T ) + speculative inferences: Decision procedures Current and future work Theorem proving strategies (Semi-decision procedures) ◮ First-order logic with equality ◮ Unsatisfiability is semi-decidable, satisfiability is not ◮ Search for proof (refutation) ◮ Models for semantic guidance: ◮ Hyper-resolution [Alan Robinson 1965] ◮ Set of support [Larry Wos et al. 1965] ◮ Semantic resolution [James Slagle 1967] ◮ ... Maria Paola Bonacina On Model-Based Reasoning

  7. Outline Model-based reasoning DPLL( Γ+ T ): algorithmic reasoner + first-order prover DPLL( Γ+ T ) + speculative inferences: Decision procedures Current and future work Algorithmic reasoning (Decision procedures) ◮ Satisfiability decidable: Symmetry restored ◮ Propositional logic ◮ Decidable (fragments of) first-order theories ◮ QFF: equality, recursive data structures, arrays ◮ Linear arithmetic (integers, rationals), arithmetic (reals) Maria Paola Bonacina On Model-Based Reasoning

  8. Outline Model-based reasoning DPLL( Γ+ T ): algorithmic reasoner + first-order prover DPLL( Γ+ T ) + speculative inferences: Decision procedures Current and future work Symmetry in the reasoner’s operations ◮ Deduction guides search for model ◮ Candidate partial model guides deduction ◮ How? Maria Paola Bonacina On Model-Based Reasoning

  9. Outline Model-based reasoning DPLL( Γ+ T ): algorithmic reasoner + first-order prover DPLL( Γ+ T ) + speculative inferences: Decision procedures Current and future work Propositional logic (SAT) ◮ Davis-Putnam-Logemann-Loveland (DPLL) procedure [Martin Davis and Hilary Putnam 1960] [Martin Davis and George Logemann and Donald Loveland 1962] ◮ Backtracking search for model ◮ State of derivation: M | | F M : sequence of truth assignments F : clauses to satisfy Maria Paola Bonacina On Model-Based Reasoning

  10. Outline Model-based reasoning DPLL( Γ+ T ): algorithmic reasoner + first-order prover DPLL( Γ+ T ) + speculative inferences: Decision procedures Current and future work Conflict-Driven Clause Learning (CDCL) ◮ Conflict: M falsifies clause L 1 ∨ . . . ∨ L n : conflict clause ◮ Explain: resolve and get another conflict clause L 1 ∨ . . . ∨ L n ¬ L 1 ∨ Q 2 . . . ∨ Q k ◮ Learn: may add resolvent(s) ◮ Backjump: undoes at least an assignment, jumps back as far as possible to state where learnt resolvent can be satisfied [Jo˜ ao P. Marques-Silva and Karem A. Sakallah 1997] [Matthew W. Moskewicz, Conor F. Madigan, Ying Zhao, Lintao Zhang and Sharad Malik 2001] Maria Paola Bonacina On Model-Based Reasoning

  11. Outline Model-based reasoning DPLL( Γ+ T ): algorithmic reasoner + first-order prover DPLL( Γ+ T ) + speculative inferences: Decision procedures Current and future work Example of CDCL F = {¬ a ∨ b , ¬ c ∨ d , ¬ e ∨ ¬ f , f ∨ ¬ e ∨ ¬ b } M = a b c d e ¬ f blue: assignments; violet: propagations Conflict: f ∨ ¬ e ∨ ¬ b Explain by resolving f ∨ ¬ e ∨ ¬ b and ¬ e ∨ ¬ f : ¬ e ∨ ¬ b Learn ¬ e ∨ ¬ b : no model with e and b true Jump back to earliest state with ¬ b false and ¬ e unassigned: M = a b ¬ e Chronological backtracking: M = a b c d ¬ e Maria Paola Bonacina On Model-Based Reasoning

  12. Outline Model-based reasoning DPLL( Γ+ T ): algorithmic reasoner + first-order prover DPLL( Γ+ T ) + speculative inferences: Decision procedures Current and future work Satisfiability modulo theories (SMT) ◮ DPLL( T ) procedure ◮ Integrate T -satisfiability procedure in DPLL ◮ Ground first-order literals abstracted to propositional variables ◮ CDCL: same [Robert Nieuwenhuis, Albert Oliveras and Cesare Tinelli 2006] Maria Paola Bonacina On Model-Based Reasoning

  13. Outline Model-based reasoning DPLL( Γ+ T ): algorithmic reasoner + first-order prover DPLL( Γ+ T ) + speculative inferences: Decision procedures Current and future work Theory combination by equality sharing ◮ Theories T 1 , . . . , T n ◮ T = � n i =1 T i ◮ T i -satisfiability procedures ◮ Disjoint: share only ≃ and uninterpreted constants ◮ Need to compute arrangement: which shared constants are equal and which are not ◮ Conservative approach: propagate all entailed (disjunctions of) equalities between shared constants [Greg Nelson and Derek C. Oppen 1979] Maria Paola Bonacina On Model-Based Reasoning

  14. Outline Model-based reasoning DPLL( Γ+ T ): algorithmic reasoner + first-order prover DPLL( Γ+ T ) + speculative inferences: Decision procedures Current and future work Model-based theory combination (MBTC) ◮ Every T i -satisfiability procedure builds a T i -model ◮ Optimistic approach: propagate equalities true in T i -model ◮ If not entailed: conflict + backjumping with CDCL + update T i -model ◮ Rationale: few equalities matter in practice [Leonardo de Moura and Nikolaj Bjørner 2007] Maria Paola Bonacina On Model-Based Reasoning

  15. Outline Model-based reasoning DPLL( Γ+ T ): algorithmic reasoner + first-order prover DPLL( Γ+ T ) + speculative inferences: Decision procedures Current and future work CDCL for ∃ -fragments of arithmetic ◮ Linear arithmetic (rationals) [Ken McMillan, A. Kuehlmann and Mooly Sagiv 2009] [Konstantin Korovin, Nestan Tsiskaridze and Andrei Voronkov 2009] [Scott Cotton 2010] ◮ Linear arithmetic (integers) [Dejan Jovanovi´ c and Leonardo de Moura 2011] ◮ Non-linear arithmetic (reals) [Dejan Jovanovi´ c and Leonardo de Moura 2012] ◮ Floating-point binary arithmetic [Leopold Haller, Alberto Griggio, Martin Brain and Daniel Kroening 2012] Maria Paola Bonacina On Model-Based Reasoning

  16. Outline Model-based reasoning DPLL( Γ+ T ): algorithmic reasoner + first-order prover DPLL( Γ+ T ) + speculative inferences: Decision procedures Current and future work Model-constructing satisfiability procedures (MCsat) ◮ Satisfiability modulo assignment (SMA) ◮ M : both L (means L ← true ) and x ← 3 ◮ CDCL + MBTC ◮ Theory CDCL: explain theory conflicts and theory propagations ◮ Beyond input literals: finite bag for termination ◮ Equality, lists, arrays, linear arithmetic (rationals) [Leonardo de Moura and Dejan Jovanovi´ c 2013] [Dejan Jovanovi´ c, Clark Barrett and Leonardo de Moura 2013] Maria Paola Bonacina On Model-Based Reasoning

  17. Outline Model-based reasoning DPLL( Γ+ T ): algorithmic reasoner + first-order prover DPLL( Γ+ T ) + speculative inferences: Decision procedures Current and future work Example of theory explanation (equality) F = { . . . , v ≃ f ( a ) , w ≃ f ( b ) , . . . } M = . . . a ← α b ← α w ← β 1 v ← β 2 . . . Conflict! Explain by a ≃ b ⊃ f ( a ) ≃ f ( b ) (instance of substitutivity) Maria Paola Bonacina On Model-Based Reasoning

  18. Outline Model-based reasoning DPLL( Γ+ T ): algorithmic reasoner + first-order prover DPLL( Γ+ T ) + speculative inferences: Decision procedures Current and future work Summary: Recent trends in model-based reasoning ◮ Deduction guides search for model ◮ Candidate model guides deduction ◮ Propositional CDCL (both DPLL and DPLL( T )) ◮ Model-based theory combination (MBTC) ◮ CDCL for arithmetic (aka Natural domain SMT) ◮ Model-constructing satisfiability procedures (MCsat) Maria Paola Bonacina On Model-Based Reasoning

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