【发布时间】:2012-03-06 16:22:01
【问题描述】:
我想将公式中的所有嵌套量词拉到最外层。我希望以下命令可以在 Z3 中使用,但它们不能:
(set-option :pull-nested-quantifiers true)
(simplify (exists ((x Int)) (and (>= x 0)
(forall ((y Int)) (and (>= y 1) (> x y))))))
:pull-nested-quantifiers 的目的是什么?如何使用 SMT-LIB 或 Z3 API 提取嵌套量词?
【问题讨论】:
标签: z3 quantifiers