AILOOct 30, 2017

Improve SAT-solving with Machine Learning

arXiv:1710.11204v120 citations
Originality Incremental advance
AI Analysis

This work addresses runtime efficiency for SAT solvers, which is incremental as it builds on existing methods like Minisat with a novel preprocessing step.

The authors tackled the problem of improving SAT-solving runtime by using a logistic regression model and Monte-Carlo preprocessing to set initial variable values in Minisat, achieving a 23% runtime decrease for satisfiable formulae (excluding preprocessing) and correctly setting 78% of backbone variables, but overall runtime did not outperform vanilla Minisat due to preprocessing overhead.

In this project, we aimed to improve the runtime of Minisat, a Conflict-Driven Clause Learning (CDCL) solver that solves the Propositional Boolean Satisfiability (SAT) problem. We first used a logistic regression model to predict the satisfiability of propositional boolean formulae after fixing the values of a certain fraction of the variables in each formula. We then applied the logistic model and added a preprocessing period to Minisat to determine the preferable initial value (either true or false) of each boolean variable using a Monte-Carlo approach. Concretely, for each Monte-Carlo trial, we fixed the values of a certain ratio of randomly selected variables, and calculated the confidence that the resulting sub-formula is satisfiable with our logistic regression model. The initial value of each variable was set based on the mean confidence scores of the trials that started from the literals of that variable. We were particularly interested in setting the initial values of the backbone variables correctly, which are variables that have the same value in all solutions of a SAT formula. Our Monte-Carlo method was able to set 78% of the backbones correctly. Excluding the preprocessing time, compared with the default setting of Minisat, the runtime of Minisat for satisfiable formulae decreased by 23%. However, our method did not outperform vanilla Minisat in runtime, as the decrease in the conflicts was outweighed by the long runtime of the preprocessing period.

Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes