Satisfiability (often written in all capitals or abbreviated SAT) is the problem of determining if the variables of a given Boolean formula can be assigned in such a way as to make the formula evaluate to TRUE.

learn more… | top users | synonyms

0
votes
1answer
41 views

Boolean formula encoding

i am wondering how many bits required to encode a boolean formula like @(x1,x2,x3,x4) = (x1 OR x2 OR NOT(x3) OR x4) AND ((NOT)x2 OR x3) AND (x1 OR (NOT)x4) @ is an instance of SAT. I think it ...
3
votes
2answers
123 views

Checking satisfiability of expression tree

I'm trying to look for a practical way (e.g. in terms of engineering effort) of solving a problem, where I have a bunch of unknown values: val a: Int32 = ??? val c: Int32 = ??? val d: Bool = ??? ...
-2
votes
1answer
37 views

Dpll, SAT (satisfability) probl, Need DPLL Function or Procedure? [closed]

here is my problem, i stucked in Matlab with SAT Problem (Satisfability) Actually i need a function called DPLL, i saw it somewhere here but its in java, can anyone help me please?? Thanks
0
votes
0answers
45 views

Using SAT-solvers to develop an NP-hardness reduction [closed]

I am looking for examples "automatic gadget generation" using SAT-solvers, similar to Ruepp and Holzer, "The computational complexity of the Kakuro puzzle, revisited", in LNCS 6099. They mention ...
0
votes
1answer
105 views

How can I find a solution of binary matrix equation AX = B?

Given an m*n binary matrix A, m*p binary matrix B, where n > m what is an efficient algorithm to compute X such that AX=B? For example: A = 1 1 0 0 1 1 0 1 0 0 1 1 0 0 1 0 1 0 0 ...
0
votes
2answers
121 views

SAT Solving for Optimization

Suppose you have a CNF formula with some variables marked special. Is there a way to make a SAT Solver (say, minisat) find a solution maximizing the number of special variables assigned to true?
3
votes
0answers
82 views

smallest independent set

Given a set s of formula, I want to find a smallest subset s' of s that implies every formula in s. I call s the smallest independent set because for every pair a,b in s' , a does not imply b and ...
4
votes
2answers
216 views

Can a SAT solver be used to find all solutions?

I wrote an answer to what I thought was a quite interesting question, but unfortunately the question was deleted by its author before I could post. I'm reposting a summary of the question and my ...
1
vote
0answers
53 views

proving a 3CNF related prob. is in P [closed]

I need help proving that this problem is decidable in polynomial-time: Input: a 3CNF formula with more than one clause. Question: can the formula be divided into two satisfiable 3CNF formulas ? ...
6
votes
1answer
137 views

Boolean satisfiability - algorithm

I have a boolean formula: (x_{1} or x_{2}) and (x_{3} or x_{4}) and ..... and (x_{2r-1} or x_{2r}), where x_{i} belongs to the set: {p_{1}, p_{2}, ... p_{99} , ~p_{1}, ~p_{2}, ... ~p_{99} } and I have ...
1
vote
0answers
75 views

How Max-SMT solvers do work?

SMT solvers are developed at deal with the satisfiability similar like SAT. As we known, SAT is also for satisfiability and variants of SAT are proposed. One of them is max-SAT. So I want to ask ...
3
votes
1answer
178 views

What's the advantage of SMT-solver over CSP-solver in constraint solving?

SMT-Solver can be used for constraint solving. As we known, CSP solvers are also for constraint solving for many years. So what's the advantage of SMT-solver over CSP solvers?
1
vote
1answer
102 views

Does any body knows or has a greedy satisfiability(GSAT) and simulated annealing satisfabiilty(SA-SAT) java algorithm?

I am looking for a GSAT and SA-SAT algorithm implemented in java. Does any body know about one? Thank you.
3
votes
1answer
179 views

Wrong result from z3

I'm trying to proof the following with Z3 SMT Solver: ((x*x) + x) = ((~x * ~x) + ~x). This is correct, because of overflow semantic in the c programming language. Now I have written the following ...
4
votes
1answer
238 views

SAT/CNF optimization

Problem I'm looking at a special subset of SAT optimization problem. For those not familiar with SAT and related topics, here's the related Wikipedia article. TRUE=(a OR b OR c OR d) AND (a OR f) ...
0
votes
1answer
51 views

A hash function for SAT preprocessing

During preprocessing of a SAT instance consisting of a clause database, every variable needs to be assigned a word. A hash function returns for each variable a 32-bit word only consisting of 0’s ...
4
votes
1answer
82 views

Compilers that translate verification algorithms into SAT problems

The proof that SAT is NP-complete is a constructive proof, so it should be possible to implement it as a program. Has anyone done this? I'm looking for a program (a compiler), that takes as input a ...
1
vote
1answer
200 views

Propositional logic

I have the following problem: I have two propositional formulas that must become logically equivalent. Only, one of them contains a 'variable', in the sense that the variable may be replaced by any ...
2
votes
1answer
66 views

Special cases of SAT and corresponding #SAT with complexity a most O(n^2) AND that have efficient algorithms for generating instances?

I am interested in learning about special cases of boolean satisfiability problems that are known to be polynomial (or more realistically, O(N^2)). These cases should also have efficient algorithm for ...
0
votes
1answer
168 views

Sets of equalities and inequalities constraint satisfiability problem

I am relatively new to CSPs and I am trying to find the value of all the variables from their respective domains, based on ==, >, < and != constraints imposed between the variables. I looked at ...
10
votes
3answers
875 views

Divide people into teams for most satisfaction

Just a curiosity question. Remember when in class groupwork the professor would divide people up into groups of a certain number (n)? Some of my professors would take a list of n people one wants to ...
1
vote
1answer
92 views

How does skolemisation of lone EXISTS clauses work?

If I have a formula like: FAx FAy (Ez(!A(x,z) v !A(y,z)) v B(x,y)) (FA = For All / E = Exists) The rules of skolemisation say that: if E is outside FA replace with a constant or if E is inside ...
5
votes
1answer
788 views

Is minimization of boolean expressions NP-Complete?

I know that boolean satisfiability is NP-Complete, but is the minimization/simplification of a boolean expression, by which I mean taking a given expression in symbolic form and producing an ...