satisfiability solvers
play

Satisfiability Solvers So far, weve been dealing with SAT problems - PDF document

Structured vs. Random Problems Satisfiability Solvers So far, weve been dealing with SAT problems that encode other problems Most not as hard as # of variables & clauses suggests Small crossword grid + medium-sized dictionary


  1. Structured vs. Random Problems Satisfiability Solvers � So far, we’ve been dealing with SAT problems that encode other problems � Most not as hard as # of variables & clauses suggests � Small crossword grid + medium-sized dictionary may turn into a big formula … but still a small puzzle at some level � Unit propagation does a lot of work for you Part 2: Stochastic Solvers � Clause learning picks up on the structure of the encoding � But some random SAT problems really are hard! � zChaff’s tricks don’t work so well here 600.325/425 Declarative Methods - J. Eisner 1 600.325/425 Declarative Methods - J. Eisner 2 The magic ratio 4.3 � Random 3-SAT � Complexity peak is very � sample uniformly from stable … space of all possible 3- � across problem sizes clauses � across solver types � n variables, l clauses systematic (last lecture) � stochastic (this lecture) � � Which are the hard instances? � around l/n = 4.3 600.325/425 Declarative Methods - J. Eisner 3 600.325/425 Declarative Methods - J. Eisner 4 slide thanks to Henry Kautz (modified) slide thanks to Henry Kautz (modified) Why 4.3? That’s called a “phase transition” � Complexity peak coincides with solubility � Problems < 32˚F are like ice; > 32˚F are like water transition � Similar “phase transitions” for other NP-hard problems � l/n < 4.3 problems under- � job shop scheduling constrained and SAT � traveling salesperson (instances from TSPlib) � l/n > 4.3 problems over- � exam timetables (instances from Edinburgh) constrained and UNSAT � Boolean circuit synthesis � l/n=4.3, problems on “knife-edge” between � Latin squares (alias sports scheduling) SAT and UNSAT � Hot research topic: � predict hardness of a given instance, & use hardness to control search strategy (Horvitz, Kautz, Ruan 2001-3) 600.325/425 Declarative Methods - J. Eisner 5 600.325/425 Declarative Methods - J. Eisner 6 slide thanks to Henry Kautz (modified) slide thanks to Henry Kautz (modified) 1

  2. GSAT vs. DP on Hard Random Instances Methods in today’s lecture … t oday yest er day (not t oday’s best algor it hm) (not yest er day’s best algor it hm) � Can handle “big” random SAT problems � Can go up about 10x bigger than systematic solvers! ☺ � Rather smaller than structured problems (espec. if ratio ≈ 4.3) � Also handle big structured SAT problems � But lose here to best systematic solvers � � Try hard to find a good solution � Very useful for approximating MAX-SAT � Not intended to find all solutions � Not intended to show that there are no solutions (UNSAT) 600.325/425 Declarative Methods - J. Eisner 7 600.325/425 Declarative Methods - J. Eisner 8 slide thanks to Russ Greiner and Dekang Lin Local search for SAT Local search for SAT � Make a guess (smart or dumb) about values Make a guess (smart or dumb) � of the variables about values of the variables How’m I doin’? � Repeat until � How’m I doin’? satisfied Try flipping a variable that makes � things better � Flip a randomly chosen variable? Repeat until � No, blundering around blindly takes exponential time satisfied � Ought to pick a variable that improves … what? Increase the # of satisfied clauses as much as possible � � Try flipping a variable to make things better Break ties randomly � Note: Flipping a var will repair some clauses and break others � � Algorithms differ on which variable to flip � This is the “GSAT” (Greedy SAT) algorithm (almost) 600.325/425 Declarative Methods - J. Eisner 9 600.325/425 Declarative Methods - J. Eisner 10 Local search for SAT Local search for SAT Make a guess (smart or dumb) Make a guess (smart or dumb) � � about values of the variables about values of the variables How’m I doin’? How’m I doin’? � � Repeat until Repeat until satisfied satisfied Try flipping a variable that makes Try flipping a variable that makes � � things better things better � Flip most-improving variable. Guaranteed to work? � Flip most-improving variable. Guaranteed to work? � What if first guess is A=1, B=1, C=1? � But what if first guess is A=0, B=1, C=1? A v C A v C � 3 clauses satisfied � 2 clauses satisfied A v B A v B � Flip A to 1 � 3 clauses satisfied � Flip A to 0 � 3 clauses satisfied ~C v ~B ~C v ~B � Flip B to 0 � 3 clauses satisfied � Flip B to 0 � all 4 clauses satisfied (pick this!) ~B v ~A ~B v ~A � Flip C to 0 � 3 clauses satisfied � Flip C to 0 � 3 clauses satisfied � Pick one anyway … (picking A wins on next step) 600.325/425 Declarative Methods - J. Eisner 11 600.325/425 Declarative Methods - J. Eisner 12 example thanks to Monaldo Mastrolilli and Luca Maria Gambardella example thanks to Monaldo Mastrolilli and Luca Maria Gambardella 2

  3. Problems with Hill Climbing Local search for SAT Make a guess (smart or dumb) � about values of the variables How’m I doin’? � Repeat until satisfied Try flipping a variable that makes � things better � Flip most-improving variable. Guaranteed to work? � Yes for 2-SAT: probability � 1 within O(n 2 ) steps � No in general: can & usually does get locally stuck � Therefore, GSAT just restarts periodically � New random initial guess Believe it or not , GSAT out per f or med ever yt hing else when it was invent ed in 1992. 600.325/425 Declarative Methods - J. Eisner 13 600.325/425 Declarative Methods - J. Eisner 14 example thanks to Monaldo Mastrolilli and Luca Maria Gambardella slide thanks to Russ Greiner and Dekang Lin Problems with Hill Climbing How to escape local optima? Restart every so often � � Local Optima (foothills): No neighbor is Don’t be so greedy (more randomness) � better, but not at global optimum. � Walk algorithms: With some probability, flip a randomly chosen variable instead of a best-improving variable � (Maze: may have to move AWAY from goal to � WalkSAT algorithms: Confine selection to variables in a single, find (best) solution) randomly chosen unsatisfied clause (also faster!) � Plateaus: All neighbors look the same. � Simulated annealing (general technique): Probability of flipping is � (8-puzzle: perhaps no action will change # of related to how much it helps/hurts tiles out of place) Force the algorithm to move away from current solution � � Ridge: going up only in a narrow direction. � Tabu algs: Refuse to flip back a var flipped in past t steps � Novelty algs for WalkSAT: With some probability, refuse to flip back � Suppose no change going South, or going East, the most recently flipped var in a clause but big win going SE � Dynamic local search algorithms: Gradually increase weight of � Ignorance of the peak: Am I done? unsatisfied clauses 600.325/425 Declarative Methods - J. Eisner 15 600.325/425 Declarative Methods - J. Eisner 16 slide thanks to Russ Greiner and Dekang Lin How do we gener alize t o MAX-SAT? How to escape local optima? Adaptive Novelty+ (current winner) � with probability 1% (t he “+” par t ) Lots of algorithms have been tried … � Choose randomly among all variables that appear in at least one unsatisfied clause � else be greedier (other 99%) Simulated annealing, genetic or evolutionary � Randomly choose an unsatisfied clause C algorithms, GSAT, GWSAT, GSAT/Tabu, � Flipping any variable in C will at least fix C (t he “novelt y” par t ) HSAT, HWSAT, WalkSAT/SKC, � Choose the most-improving variable in C … except … � with probability p, ignore most recently flipped variable in C WalkSAT/Tabu, Novelty, Novelty+, R- � The “adapt ive” part : Novelty(+), Adaptive Novelty(+), … � If we improved # of satisfied clauses, decrease p slightly � If we haven’t gotten an improvement for a while, increase p � If we’ve been searching too long, restart the whole algorithm 600.325/425 Declarative Methods - J. Eisner 17 600.325/425 Declarative Methods - J. Eisner 18 3

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