SAT solvers are a class of algorithms for solving satisfiability problem of boolean formulas. SAT was the first known example of an NP-complete problem. Since then, there are a lot of research regarding how to efficiently solve a large enough subset of SAT instances to be useful in various ...
3
votes
2answers
301 views
Looking for practical examples of SMT Z3 usecases (like DbC) and open source alternative to Z3?
I have got interested in and looking for practical examples of SMT Z3 usage (like DbC) with code and open source alternatives to this tool. So, in fact, I am interested in similar Z3 formal solving ...
2
votes
1answer
581 views
Learning material on SAT (Boolean Satisfiability Problem)
What are good documents to read on SAT (Boolean satisfiability problem) solvers. I have not been able to find good material via Google. The documents I found were either birds eye view, too advanced ...
1
vote
0answers
81 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
3answers
58 views
Determine upper/lower bound for variables in an arbitrary propositional formula
Given an arbitrary propositional formula PHI (linear constraints on some variables), what is the best way to determine the (approximate) upper and lower bound for each variable?
Some variables may be ...
1
vote
1answer
410 views
Solving using DPLL sat solver
I found a sat solver in
http://code.google.com/p/aima-java/
I tried the following code to solve an expression using dpllsolver
the input is
(A <=> B) AND (C => D) AND (A AND C) AND (NOT ...
0
votes
0answers
17 views
Java parser with control-flow enumeration
Is there an open-source java parsing tool that can enumerate control flow paths through a method and compute range constraints on integer variables? (A Sat-solver would be great as well)
0
votes
0answers
64 views
RCPSP in SMT-LIB (for Z3) - how to model discrete resources
Currently we are creating a Domain Specific Language for the Job Shop Scheduling Problem.
We are using C++ as a front-end and a SMT-LIB supported back-end, currently Z3.
We have a basic program up an ...
0
votes
1answer
683 views
how to convert boolean expression to cnf file?
i need to use sat solver for checking satisfiability of boolean expressions..
I have complex boolean expression like this
is there any automatic cnf file converter so that i can give it straight ...
0
votes
1answer
415 views
input cnf for sat4j solver
I a totally new to sat4j solver..
it says some cnf file should be given as input
is there any possible way to give the rule as input and get whether it is satisfiable or not?
my rule will be of the ...