Introductory Remarks on SMT Provers
We next study techniques that help understand how modern SMT (satisfiability modulo-theories) provers work.
Meaning of name (recent):
- satisfiability: check satisfiability of formulas (to check validity, check satisfiability of negation)
- modulo theories: built-in support for arithmetic, arrays, algebraic data types
Example provers:
- Simplify theorem prover (was very influential)
SMT Prover Architecture
Layers:
- fast solving of quantifier-free formulas (see DPLL(T) paper)
- SAT solver to 'enumerate' conjunctions of disjunctive normal form (Lecture 08a)
- specialized algorithms for quantifier-free formulas - this is what we will talk about today
- heuristic quantifier instantiation (instantiation rule)
Note: formulas that are valid in the combination of quantifiers, linear integers, and uninterpreted functions are not enumerable (and neither are formulas that are not valid). The situation is worse than in pure first-order logic.