词条 | WalkSAT |
释义 |
In computer science, GSAT and WalkSAT are local search algorithms to solve Boolean satisfiability problems. Both algorithms work on formulae in Boolean logic that are in, or have been converted into, conjunctive normal form. They start by assigning a random value to each variable in the formula. If the assignment satisfies all clauses, the algorithm terminates, returning the assignment. Otherwise, a variable is flipped and the above is then repeated until all the clauses are satisfied. WalkSAT and GSAT differ in the methods used to select which variable to flip. GSAT makes the change which minimizes the number of unsatisfied clauses in the new assignment, or with some probability picks a variable at random. WalkSAT first picks a clause which is unsatisfied by the current assignment, then flips a variable within that clause. The clause is picked at random among unsatisfied clauses. The variable is picked that will result in the fewest previously satisfied clauses becoming unsatisfied, with some probability of picking one of the variables at random. When picking at random, WalkSAT is guaranteed at least a chance of one out of the number of variables in the clause of fixing a currently incorrect assignment. When picking a guessed-to-be-optimal variable, WalkSAT has to do less calculation than GSAT because it is considering fewer possibilities. The algorithm may restart with a new random assignment if no solution has been found for too long, as a way of getting out of local minima of numbers of unsatisfied clauses. Many versions of GSAT and WalkSAT exist. WalkSAT has been proven particularly useful in solving satisfiability problems produced by conversion from automated planning problems. The approach to planning that converts planning problems into Boolean satisfiability problems is called satplan. MaxWalkSAT is a variant of WalkSAT designed to solve the weighted satisfiability problem, in which each clause has associated with a weight, and the goal is to find an assignment—one which may or may not satisfy the entire formula—that maximizes the total weight of the clauses satisfied by that assignment. References
| last = Papadimitriou | first = Christos H. | authorlink = Christos Papadimitriou | contribution = On selecting a satisfying truth assignment | doi = 10.1109/SFCS.1991.185365 | pages = 163–169 | title = Proceedings of the 32nd Annual Symposium on Foundations of Computer Science | year = 1991| isbn = 978-0-8186-2445-2 }}.
| last = Schöning | first = U. | authorlink = Uwe Schöning | contribution = A probabilistic algorithm for k-SAT and constraint satisfaction problems | doi = 10.1109/SFFCS.1999.814612 | pages = 410–414 | title = Proceedings of 40th Annual Symposium on Foundations of Computer Science | year = 1999| isbn = 978-0-7695-0409-4 | citeseerx = 10.1.1.132.6306 }}.
External links
4 : Logic in computer science|Constraint programming|Automated theorem proving|SAT solvers |
随便看 |
开放百科全书收录14589846条英语、德语、日语等多语种百科知识,基本涵盖了大多数领域的百科知识,是一部内容自由、开放的电子版国际百科全书。