Closed JonathanSalwan closed 8 years ago
This bug was in Z3 version 4.4.0
. After a git pull on the master branch 4.4.2
this bug seems to be fixed.
$ z3 -smt2 ./poc.smt2
(error "line 6 column 21: declared arity mismatches supplied arity")
sat
(model
)
Sorry,
Below the reduced PoC.
Z3 segfaults when parsing the
bvslt
function which should contain at least two operands (here, only one is given).According to GDB, the segfault seems to occur in the
get_sort()
function.This segfault also occurs with
bvule
,bvsle
,bvuge
,bvsge
,bvult
,bvslt
,bvugt
andbvsgt
.Bellow the backtrace:
Hope these information may be useful :).