Tagged Questions
The satisfiability tag has no wiki summary.
9
votes
3answers
475 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 ...
4
votes
1answer
611 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 ...
2
votes
1answer
48 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) ...
2
votes
1answer
23 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 ...
2
votes
1answer
26 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 ...
1
vote
1answer
51 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 ...
1
vote
1answer
89 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 ...
0
votes
0answers
110 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 ...