z3 icon indicating copy to clipboard operation
z3 copied to clipboard

The Z3 Theorem Prover

Results 148 z3 issues
Sort by recently updated
recently updated
newest added

Hi, For this case, Z3 gives an incorrect answer: ``` [573] % z3 smt.string_solver=z3str3 small.smt2 sat [574] % z3 small.smt2 unsat [575] % [575] % cat small.smt2 (set-logic QF_S) (assert...

z3str3

Hi, For this case, Z3 gives an incorrect answer: ``` [572] % z3 small.smt2 unsat [573] % z3 smt.arith.solver=2 small.smt2 unsat [574] % z3 smt.arith.solver=2 smt.string_solver=z3str3 small.smt2 unsat [575] %...

z3str3

For this test case, I can get the result "unsat" quickly by using cvc4, but z3 can't get the result for a long time. ``` (set-logic QF_S) (declare-fun var0 ()...

z3str3

``` (set-logic QF_S) (declare-fun var3 () Int) (declare-fun var0 () String) (declare-fun var2 () String) (assert (> (str.indexof "+]YAPKJ8b8" var2 var3) (str.to.int var0))) (check-sat) ``` ![timeout](https://user-images.githubusercontent.com/54280371/118092416-ab2f4900-b3fe-11eb-8d02-8e0adc10ee61.png) This test case triggers...

z3str3

The following benchmark is actually rather simple, in the sense that a simple substitution of variables should find the `sat` model relatively quickly. Indeed, up until Nov 29th, z3 quickly...

string

When instance of `Context` is created and disposed memory leak is observed. **Z3 Version:** 4.8.10 (also reproducible with previous versions) ### **Steps to reproduce (C#):** ``` // Check allocated memory...

API usability / compile

@NikolajBjorner It appears something is off with the nightly releases. If I go to: https://github.com/Z3Prover/z3/releases/tag/Nightly And get the latest "Source-code" as listed in the `Assets` section and look at the...

API usability / compile

Z3 4.8.8 solves this query instantly (as well as all previous releases as far as I can remember), while the new Z3 4.8.9 times out: [pero.zip](https://github.com/Z3Prover/z3/files/5258014/pero.zip) This is pretty unexpected...

Sorry if this is more a question than an issue to be reported. We are trying to integrate z3 into a compiler ( http://github.com/ethereum/solidity/ ) but are currently a little...

build/release
API usability / compile

The following smt input ``` (set-info :smt-lib-version 2.5) (assert (forall ((x String)) (= (str.in.re x (re.++ (str.to.re "a") (re.* (str.to.re "a")))) (str.in.re x (re.+ (str.to.re "a"))) ) ) ) (check-sat)...

string