【发布时间】:2014-07-25 02:53:56
【问题描述】:
假设我有以下限制
(declare-fun x () Bool)
(declare-fun y () Bool)
(declare-fun t1 () (_ BitVec 8))
(declare-fun t2 () (_ BitVec 8))
(assert (or x y))
(assert (=> x (bvule t1 t2)))
(assert (=> y (bvule t2 t1)))
(check-sat)
如何在stp的c/c++接口中编写相应的代码? 我的应用程序需要解决与此类似的约束集。 任何帮助表示赞赏。
【问题讨论】: