unknown with bit-blast #7278
-
Hi!
I don't know what the difference is when I |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
the fp parameters are for preprocessing Horn clauses. It is used for set-logic HORN or for constrainds added by "rule' and "fact" (see the z3guide https://microsoft.github.io/z3guide/docs/fixedpoints/intro) or for constraints added using the FixedPoint context over the binary API. |
Beta Was this translation helpful? Give feedback.
-
The reason you get an |
Beta Was this translation helpful? Give feedback.
The reason you get an
unknown
is that the bit-blast tactic does not attempt to solve the problem, it only translates it. To solve the bit-blasted problem, you still need to call the SMT tactic, e.g.(check-sat-using (then bit-blast smt))
.