Z3.jl icon indicating copy to clipboard operation
Z3.jl copied to clipboard

Calling model twice in a row causing segfault

Open zenna opened this issue 10 years ago • 0 comments

A = Var(Integer)
B = Var(Integer)
add!(A * B == 12)
check()
model(Int, A)
model(Int, B) #segfault here

zenna avatar Oct 27 '15 05:10 zenna