Can Z3 check the satisfiability of formulas that contain recursive functions?

后端 未结 1 607
无人共我
无人共我 2020-12-19 15:03

I\'m trying out some of the examples of a Z3 tutorial that involve recursive functions. I\'ve tried out the following example.

  1. Fibonacci (Section 8.3)
相关标签:
1条回答
  • 2020-12-19 15:23

    These examples from the Z3 tutorial are there to illustrate limitations of the technology behind Z3.

    Z3 fails on these examples for two reasons:

    1. The models produced by Z3 assign an interpretation for each uninterpreted function symbol. The models can be viewed as functional programs. The current version does not produce recursive definitions. The first example is satisfiable, but Z3 fails to produce an interpretation for fib because it does not support recursive definitions. We have plans to extend Z3 in this direction.

    2. Z3 does not support proofs by induction. Examples 2 and 3 are unsatisfiable, but Z3 fails because it does not support proof by induction. We also have plans to add basic support for that.

    Although these items are on my TODO list, I will not start working on them this year.

    0 讨论(0)
提交回复
热议问题