Non-linear arithmetic and uninterpreted functions

后端 未结 1 908
执念已碎
执念已碎 2020-12-21 10:26
(declare-const x Real)
(declare-fun f (Real) Real)
(assert (= (f 1.0) 0.0))
(assert (= (* x x) (* 1.0 1.0)))
(check-sat)
(get-model)

I have two ind

1条回答
  •  轮回少年
    2020-12-21 11:28

    The new nonlinear solver is not integrated with other theories (arrays, unintepreted functions, bit-vectors) yet. In Z3 4.0, it can only be used to solve problems that contain only nonlinear arithmetic assertions. This is will change in future versions.

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