tutorial on sat solvers
play

Tutorial on SAT Solvers Combinatorial Problem Solving (CPS) Enric - PowerPoint PPT Presentation

Tutorial on SAT Solvers Combinatorial Problem Solving (CPS) Enric Rodr guez-Carbonell May 26, 2020 SAT Solvers SAT solvers take as input a CNF formula F and return: sat (+ model): if F is satisfiable unsat : if F is unsatisfiable


  1. Tutorial on SAT Solvers Combinatorial Problem Solving (CPS) Enric Rodr´ ıguez-Carbonell May 26, 2020

  2. SAT Solvers SAT solvers take as input a CNF formula F and return: ■ sat (+ model): if F is satisfiable ◆ unsat : if F is unsatisfiable ◆ We will be using lingeling (developed by Armin Biere) ■ Usage: lingeling [ <option> ... ] <input> ■ Some options: ■ -s <seed> : set random seed ◆ -o <output> : set output file ◆ -h : help, shows all options ◆ 2 / ??

  3. Input Format: DIMACS (I) First some optional comment lines: c�<comment> ■ Then a line: p�cnf�<num_vars>�<num_clauses> ■ Then clauses: ■ Each variable is represented with an integer ≥ 1 ◆ Negated literals are negative integers ◆ Literals in a clause separated by blank spaces ◆ 0 marks the end of a clause ◆ 3 / ??

  4. Input Format: DIMACS (II) ( x 1 ∨ x 2 ) ∧ ¬ x 3 ■ c This is an example of SAT formula p cnf 3 2 1 2 0 -3 0 ( x 1 ∨ x 2 ) ∧ ( x 1 ∨ ¬ x 2 ) ∧ ( ¬ x 1 ∨ x 2 ) ∧ ( ¬ x 1 ∨ ¬ x 2 ) ■ c This is an example of UNSAT formula p cnf 2 4 1 2 0 1 -2 0 -1 2 0 -1 -2 0 4 / ??

  5. Output Format There may be comment lines started with c that should be ignored ■ (as in the input format) 1st line of the remaining lines is one of: ■ s SATISFIABLE ◆ s UNSATISFIABLE ◆ If satisfiable, then comes a list of true literals. ■ Each following line is of the form v <list of lits> Example: output for formula ( x 1 ∨ x 2 ) ∧ ¬ x 3 s SATISFIABLE v 1 2 -3 0 Interpretation I with I ( x 1 ) = I ( x 2 ) = 1 , I ( x 3 ) = 0 is model 5 / ??

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