Skip to content

Latest commit

 

History

History
76 lines (64 loc) · 3.62 KB

intro.md

File metadata and controls

76 lines (64 loc) · 3.62 KB

EvoGuessAI

SAI ITMO

license Eng Mirror

Table of contents

  1. Introduction
  2. Installation
  3. Preliminaries
  4. Input formats
  5. Basic usage
  6. Advanced usage
  7. Examples

Introduction

EvoGuessAI is a library designed for solving combinatorial problems with Boolean constraints, whose main algorithms use so-called probabilistic backdoors. The methodology of EvoGuessAI is to find probabilistic backdoors (ρ-backdoors) and then use them to solve hard variants of Boolean Satisfiability Problem (SAT), Maximum Satisfiability Problem (MaxSAT) and 0-1 Integer Linear Programming Problem (0-1-ILP). Let us briefly describe the basic concept of applying probabilistic backdoors to solve problems of the described classes.

Strong Backdoor Set (SBS) for a particular combinatorial Constraint Satisfaction Problem (SCP) is a set of variables in the constraint system under consideration, the knowledge of which provides some additional information, often allowing either to solve the CSP under consideration significantly faster than by brute force, or to construct a non-trivial certificate of inconsistency of the given system. The exact definition of SBS was given in [1]. Unfortunately, SBS of small size in combinatorial problems of the above classes are very rare. Moreover, the search for the minimal SBS is an extremely hard problem, the upper estimate of the complexity of which is worse than the upper estimate of the solution of the considered CSP by the brute force method. The so-called probabilistic backdoors or ρ-backdoors, first described in [2], proved to be more practically suitable. Unlike SBS, a ρ-backdoor is not obliged to give a solution to the CSP under consideration, but gives only a partial certificate of its inconsistency (unsatisfiability in the case of Boolean formulas). However, small-size ρ-backdoors exist in many practical examples of CSPs. In addition, metaheuristic optimization algorithms can be used to find ρ-backdoors, which turn out to be very effective in practice. By knowing some set of ρ-backdoors, it is often possible to transform the original hard problem into a variant that is not extremely hard for the basic combinatorial algorithms being used (SAT, MaxSAT, MIP solvers). Currently, backdoor-based algorithms and techniques have been successfully applied to problems in the following areas: Logical Equivalence Checking (LEC), Location Problems, Job-Shop Scheduling problems, and cryptographic function robustness analysis.

For more detailed description of the theoretical background behind EvoGuessAI, see Preliminaries.

References

[1] Williams R., Gomes C., Selman B. Backdoors to typical case complexity. IJCAI 2003.

[2] Semenov A., Pavlenko A., Chivilikhin D., Kochemazov S. On probabilistic generalization of backdoors in Boolean satisfiability. AAAI 2022.

↑Table of contents