从Z3中的const数组中提取值

时间:2016-12-01 05:53:41

标签: arrays z3

我的问题是,在Z3 C / C ++ API中,如何从Z3生成的模型中获取(索引,值)对。

我遇到了同样的问题, Read func interp of a z3 array from the z3 model

然而,该解决方案并不总是对我有用。

assert(Z3_get_decl_kind(c, some_array_1_eval_func_decl) == Z3_OP_AS_ARRAY); 
assert(Z3_is_app(c, some_array_1_eval));
assert(Z3_get_decl_num_parameters(c, some_array_1_eval_func_decl) == 1);
assert(Z3_get_decl_parameter_kind(c, some_array_1_eval_func_decl, 0) == 
       Z3_PARAMETER_FUNC_DECL);
func_decl model_fd = func_decl(c, 
                   Z3_get_decl_func_decl_parameter(c, some_array_1_eval_func_decl, 0));

第一个断言可能会失败,因为函数:

Z3_get_decl_kind(c, some_array_1_eval_func_decl)

返回Z3_OP_CONST_ARRAY。

我只是想知道在这种情况下我应该如何提取它。

模型是:

(define-fun |choice.pc.1:1| () Bool
  false)
(define-fun pc () (_ BitVec 4)
  #x0)
(define-fun pc_miter_output () Bool
  true)
(define-fun rom () (Array (_ BitVec 4) (_ BitVec 4))
  (_ as-array k!0))
(define-fun |choice.pc.1:2| () Bool
  true)
(define-fun k!0 ((x!0 (_ BitVec 4))) (_ BitVec 4)
  (ite (= x!0 #x0) #x0
    #x0))

我用它来评估“rom”。如果我打印出结果,那就是

((as const (Array (_ BitVec 4) (_ BitVec 4))) #x0)

我可以得到它的声明。那是

(declare-fun const ((_ BitVec 4)) (Array (_ BitVec 4) (_ BitVec 4)))

如果我忽略第一个断言错误并继续,第四个断言可能会失败,它实际上是Z3_PARAMETER_SORT。

我发现答案可能适用于旧版本的Z3库,但我需要使用更新的版本,因为较新的版本具有to_smt2()函数。

谢谢!

1 个答案:

答案 0 :(得分:2)

感谢Christoph的暗示。我通过以下代码解决了这个问题:

假设

mval = model.eval(...);
mfd = mval.decl();

然后,

while(Z3_get_decl_kind(c.ctx(), mfd) == Z3_OP_STORE) {
    expr addr = mval.arg(1);
    expr data = mval.arg(2);
    // put them into the stack, say __stack__ for later use
    // I omit the code for using them
    mval = mval.arg(0);
    mfd = mval.decl();
    // recursively handle the OP_STORE case, because the first
    // argument can still be an Z3_OP_STORE
}
// now that we peel the Z3_OP_STORE
if(Z3_get_decl_kind(c.ctx(), mfd) == Z3_OP_CONST_ARRAY) {
    expr arg0 = mval.arg(0);
    // we can just use it directly since it is a constant
    std::string sdef(Z3_get_numeral_string(context, arg0));
    // I omit the code for using that value
}
else if( Z3_get_decl_kind(c.ctx(), mfd) == Z3_OP_AS_ARRAY ) {
    // HERE is the original code for handling original case.
    // in the question from the link: 
    // http://stackoverflow.com/questions/22885457/read-func-interp-of-a-z3-array-from-the-z3-model/22918197#22918197?newreg=1439fbc25b8d471981bc56ebab6a8bec
    // 
}

希望它对别人有所帮助。