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 = initial QFBV formula
while(F is unsat) {
    F := F Union {some additional QFBV formula based on unsat core}
}

Does Z3 maintain the learned information? Can I use z3 incrementally?

Thanks.

link|improve this question
feedback

1 Answer

Yes, Z3 can do that if you use assumptions. This is discussed here: Soft/Hard constraints in Z3

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.