Z3 is a high-performance theorem prover being developed at Microsoft Research. Z3 supports linear real and integer arithmetic, fixed-size bit-vectors, extensional arrays, uninterpreted functions, and quantifiers. Some key features of Z3 are: High-performance theorem prover Integrating efficient ...
3
votes
1answer
95 views
The “pull-nested-quantifiers” option seems to cause problems in the context for UFBV?
I am currently experimenting with Z3 as bounded engine for specifications written in Alloy (a relational logic/language). I am using the UFBV as target language.
I detect a problem using the Z3 ...
3
votes
1answer
85 views
How are Int sort (of SMT-LIB 2.0 Ints theory) and dynamically declared sorts defined in z3?
Here is an SMT-LIB 2.0 benchmark which I executed with z3 :
(set-logic AUFLIA)
(declare-sort PZ 0)
(declare-fun MS (Int PZ) Bool)
(assert (forall ((x Int)) (exists ((X PZ))
(and (MS x ...
3
votes
2answers
113 views
Can Z3 check the satisfiability of recursive functions on bounded data structures?
I know that Z3 cannot check the satisfiability of formulas that contain recursive functions. But, I wonder if Z3 can handle such formulas over bounded data structures. For example, I've defined a list ...
3
votes
1answer
147 views
Does Z3 Support Craig Interpolation
Can Z3 generate Craig interpolants (at least for propositional logic ?).
I have not found it in the documentation of Z3.
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
52 views
Can Z3 work in incremental mode?
I am using Z3 on QFBV formulas . I was wondering if Z3 can work incrementally on such formulas like SAT solvers can on boolean clauses. Basically I need a way to implement the following loop:
F = ...
2
votes
1answer
71 views
Counterexample output of Z3
When a formula in Z3 is unsat and (get-proof) is specified there is an output which I don't find any information about what it is. Where can I find any documentation about that?
Seems to me quite ...
2
votes
1answer
73 views
Sort Mismatch in Model
I have analyzed a formula in QF_AUFLIA with z3. The result was sat. The model returned by (get-model) contained the following lines:
(define-fun PCsc5_ () Int
(ite (= 2 false) 23 33)
...
2
votes
1answer
62 views
Can Z3 handle datatypes that contains sorts introduced by declare-sort/define-sort?
I'm trying to define a datatype that contains sorts introduced by declare-sort or define-sort.
But the following attempt results in errors.
(declare-sort A)
(define-sort B () Int)
(declare-datatypes ...
2
votes
2answers
112 views
Use Z3 and SMT-LIB to get a maximum of two values
How do I get the maximum of a formula using smt-lib2?
I want something like this:
(declare-fun x () Int)
(declare-fun y () Int)
(declare-fun z () Int)
(assert (= x 2))
(assert (= y 4))
(assert (= z ...
2
votes
1answer
63 views
Is there an option to pretty-print bit vectors as signed decimals?
How can you pretty-print bit vectors as signed decimals in Z3?
2
votes
1answer
84 views
Is there any way to simplify the path conditions
For example, in the code below the path condition will be x>0 && x+1>0. But since x>0 implies x+1>0, is there any way in z3 or pex API to get only x>0 and not both.
if(x>0)
...
2
votes
1answer
52 views
Display quantified-out formula
how do I display the result of quantifier elimination ?
z3 seems to be happy with the following input
(set-option :elim-quantifiers true)
(declare-fun y () Real)
(simplify (exists ((x Real)) (>= ...
2
votes
1answer
139 views
Linux Version of Z3: Dependency On Old libgmp.so.3
Z3's dependency on libgmp.so.3 is unresolved in the linux package, leaving the user to provide this library. However, this library is very old and is not readily available.
Does anyone know a method ...
2
votes
1answer
119 views
Equivalent of define-fun in Z3 API
Using Z3 with the textual format, I can use define-fun to define functions for reuse later on. For example:
(define-fun mydiv ((x Real) (y Real)) Real
(if (not (= y 0.0))
(/ x y)
0.0))
...
2
votes
1answer
51 views
Z3 naming let bindings in API
I am using Z3 from the API and I'm looking for a way to debug my constraints. My code compiles and Z3 runs on my constraints, but something is wrong with my constraints. I'm hoping to look at the ...
2
votes
1answer
67 views
How to get “stronger” simplifications of conjunctions in Z3?
Using Z3 version 2.18, I am trying to simplify formulas such as:
(and (> (- (- x 1) 1) 0) (> x 0))
(or (> (- (- x 1) 1) 0) (> x 0))
hoping to get something like: (> x 2) and (> x 0).
I am running ...
2
votes
1answer
114 views
Scala^Z3 (Z3 Version 3.2) and parsesmtlib2string(…) not working
While trying to implement a test using parsesmtlib2string I hit an error:
println("Hello World!");
var smtlib2String = ""
smtlib2String += "(declare-fun x () bool)" + "\n"
smtlib2String += ...
2
votes
1answer
42 views
Does Z3_ast reference counting count references outside Z3?
In Z3 there are 2 modes: automatic reference counting and manual.
I understand how manual ref counting works. Thanks to example.
But how does Z3 know when to delete AST node in automatic ...
2
votes
1answer
48 views
How to declare a record such that one of its fields is a function
I'm very new to Z3, so sorry for asking something silly.
I'm trying to define a record such that some of its fields are functions. I tried this:
(declare-datatypes (DOM RAN) ((PFun (mk-pfun (dom ...
2
votes
1answer
73 views
Support for AUFBV?
Will Z3 be supporting AUFBV?
For the following script:
(set-logic AUFBV)
(declare-fun x () (_ BitVec 16))
(declare-const t (Array (_ BitVec 16) (_ BitVec 16)))
(assert (= (select t #x0000) #x0000))
...
2
votes
2answers
158 views
Compiling Scala^Z3 on Windows
I tried to compile Scala^Z3 on Win XP using Cygwin and JDK 1.7.0 but it didn't work out as expected.
I did the following:
- Use SBT 0.7.4
- Use current Scala^Z3 revision from github
- Use Cygwin and ...
2
votes
1answer
132 views
Can Z3 be used to reason about substrings?
I am trying to use Z3 to reason about substrings, and have come across some non-intuitive behavior. Z3 returns 'sat' when asked to determine if 'xy' appears within 'xy', but it returns 'unknown' when ...
1
vote
1answer
25 views
Smtlib trouble with the code
I have this following code
(set-logic QF_LIA)
(declare-fun w () Int)
(declare-fun x () Int)
(declare-fun y () Int)
(declare-fun z () Int)
(assert (> x y))
(assert (> y z))
(push 1)
(assert ...
1
vote
1answer
39 views
z3: how to convert a boolean sort into a bit vector sort
I am doing symbolic interpretation of x86 instructions. For the cmp instruction for instance, the sign of the comparison and whether operands are equal or not is stored in two bits of the eflags ...
1
vote
1answer
49 views
Symmetry breaking for Z3 — in the context of the UFBV logic (new version)
(This is my second try to get help. If the question/approach do not make sense or not clear, please just let me know. I would also be pleased about any small hint or reference, which can help me to ...
1
vote
1answer
38 views
z3 timeout on linux/mac
Hi Leonardo: Looks like z3 (v3.2) accepts the command line switch "-T:10" for specifying time-outs on Mac and Linux, but ignores it. (Haven't tried on windows.) It'd be really nice if timeouts were ...
1
vote
1answer
36 views
What is the reason behind the warning message in Z3: “failed to find a pattern for quantifier (quantifier id: k!18) ”
I find an issue as shown in the following simple SMT-LIB program.
The SMT-LIB code:
(declare-fun isDigit (Int) Bool)
(assert (forall ((x Int))
(=> (isDigit x)
(and (>= x 0) ...
1
vote
1answer
46 views
Incremental calls to Z3 on UFBV with and without push calls
I am running Z3 on UFBV queries. Currently the query contains 2 calls check-sat.
If put push 1 just after check-sat Z3 solves the query in 30sec. If don't put any push 1 at all - Z3 solves it in ...
1
vote
1answer
54 views
Z3 Model Incorrect
I am hacking away at the problem of finding a Hamiltonian cycle in an undirected graph. But a recent experiment produced what should have been an impossible model. Here is the input:
;number of ...
1
vote
1answer
76 views
Same input, Z3 works on Windows, but gives Segmentation Faults on Linux
I use Z3 as a back-end solver on bounded program verification. I feed same formulas to Z3 on different operating systems, Windows 7 X64 and SuSe 10.3 X64, both Z3 are version 3.2.
Their input is:
...
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
56 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
42 views
How to find out if a z3_ast corresponds to a clause?
I am using Z3 with c api. Is it possible to find out if a given Z3_ast variable corresponds to a clause like or_b1_b2 bellow?
Z3_ast or_b1_b2 = ...
1
vote
1answer
64 views
How to get statistics in Z3 3.2?
With Z3 2.x I used the SMTLib2 command
(get-info statistics)
to get statistics of a Z3 run. Using Z3 3.2 I get
(error "line _ column _: invalid command argument, keyword expected")
for the ...
1
vote
2answers
82 views
About the representation of the Uninterpreted Function in Z3
I have a quick question. I wrote a simple program (using Z3 NET API) and got the output as follows.
Program (Partial):
Sort[] domain = new Sort[3];
domain[0] = intT;
...
1
vote
1answer
39 views
Warning INI parameter missing in Z3 3.2?
According to the list of INI parameters there should be a boolean WARNING flag, but setting it in Z3 3.2 (x64_mt) via
(set-option :WARNING false)
yields unsupported for both spellings WARNING and ...
1
vote
1answer
49 views
Is there any difference between Z3 versions 2.19 and 3.2 w.r.t. SMTLIB-2 code syntax?
After installing Z3 V3.1, following SMT-LIB code is not working. It was quite good in my earlier version (Z3 V2.19).
(define-fun getIP ((o0 Int) (o1 Int) (o2 Int) (o3 Int)) BitVec[32]
(bvor ...
1
vote
1answer
85 views
Values for Array Terms in z3 Models
I am using z3 for my research and I have the following problem. I am analyzing the model of a satisfiable formula that contains arrays and uninterpreted functions. I would like to inspect inspect ...
1
vote
1answer
61 views
How do I find the memory and time required for modeling/checking the satisfiability in Z3 (NET API)
I am working with Z3 and Yices for less than a year for solving some research problems. Working with these solvers, I always need to evaluate the performance, especially two things: time and space ...
1
vote
1answer
70 views
Scala^Z3 kills running Thread on parser error
When I use Scala^Z3 (Z3 3.2 and according Scala^Z3 java library) and get a parser error like:
(error "line 21 column 41: invalid command, '(' expected")
Error: parser error
The executed Thread is ...
1
vote
2answers
104 views
How to optimize a piece of code in Z3? (PI_NON_NESTED_ARITH_WEIGHT related)
I have a code in z3 which aims to solve an optimization problem for a boolean formula
(set-option :PI_NON_NESTED_ARITH_WEIGHT 1000000000)
(declare-const a0 Int) (assert (= a0 2))
(declare-const b0 ...
1
vote
3answers
106 views
Is it possible to find optimal solution for a boolean formula by SMT solvers?
I have a big boolean formula to solve, due to the reason of the redaction, I have to paste an image here:
Also, I have already a function area to measure the dimension of 4 integers: ...
1
vote
1answer
98 views
Soft/Hard constraints in Z3
How do I express soft and hard constraints in Z3? I know from the API that it is possible to have assumptions (soft constraints), but I can't express this when using the command line tool. I am ...
1
vote
2answers
68 views
Use Z3 and smtlib to calculate configuration/model with mixed values
How do I calculate attributed values?
Here's an example:
(declare-fun x () bool)
(declare-fun y () bool)
(declare-fun z () bool)
(assert (AND x (OR y z)))
With this I would get 2 models:
x=true ...
1
vote
1answer
78 views
Expressing a subtype relation between enumeration types in Z3
What's the best way to express a subtype relation between enumeration types in Z3?
Specifically, I want to do something like the following:
(declare-datatypes () ((Animal Eagle Snake Scorpion)))
...
1
vote
1answer
45 views
Test satisfiability with respect to a fixed partial model
Assume that I have asserted some formula P and, after checking satisfiability, obtained from Z3 a partial model for it, let's call it M.
Now, would it be possible to test whether another formula Q ...
1
vote
2answers
100 views
Use of term rewriting in decision procedures for bit-vector arithmetic
I am working on a project whose focus is the use of term rewriting to solve/simplify fixed-size bit-vector arithmetic problems, which is something useful to do as a prior step to some decision ...
1
vote
1answer
72 views
Performance issue with unsatisfiable models
I'm using Z3 to construct a bounded model-checker. I'm running into a strange performance problem when trying to implement a completeness test. The completeness test has to make sure that all states ...
1
vote
1answer
100 views
Label on SMT-LIB 2.0 assertions in z3
Could you tell me how to name assertions in a z3 SMT-LIB 2.0 benchmark? I would prefer to use the standard syntax of SMT-LIB, but as z3 seems not to understand it, I'm just looking for one working ...