1 / 4

DPLL example

a. DPLL example. Legend. false. C1:(a  b) C2:(  a   b) C3:(a   c) C4:(c  d  e) C5:(d   e) C6:(  d   f) C7:(f  e) C8:(  f   e). true. a =false by branching. a =false by pure symbol. a. a. a =true by an unit clause. a. e. d. b. c.

ina
Download Presentation

DPLL example

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. a DPLL example Legend false C1:(a  b) C2:(a b) C3:(a c) C4:(c  d  e) C5:(d e) C6:(d f) C7:(f  e) C8:(f e) true a=false by branching a=false by pure symbol a a a=true by an unit clause

  2. a e d b c branching pure symbol unit clause false true DPLL example Unit Clause? Pure Symbol ? C1:(a  b) C2:(a b) C3:(a c) C4:(c  d  e) C5:(d e) C6:(d f) C7:(f  e) C8:(f e) C4 is a unit clause No unit clause Yes C3 is an unit clause Yes, b in C1 is pure No pure symbol C5 is unsatisfied, Early termination Backtrack upto the last branching: d = false

  3. a b c d f e branching pure symbol unit clause false true DPLL example C1:(a  b) C2:(a b) C3:(a c) C4:(c  d  e) C5:(d e) C6:(d f) C7:(f  e) C8:(f e) Formula Satisfied! C6 is an unit clause e is pure

  4. Exercise • Find a satisfying assignment using DPLL (a  b) (a b  c) (c  d  e) (a  c) (d  f) (a  c) (e f)

More Related