CVC4是否可以使用自定义数据类型的数组?

时间:2018-07-10 14:35:05

标签: smt cvc4

使用截至2018-07-10的最新cvc4,此代码:

(set-info :smt-lib-version 2.6)
(set-logic ALL)
(declare-datatypes
  ( (Type 0) )
  ( ((bool) (number)
     (tuple (tuple-type (Array Int Type)))) ))

从cvc4产生此输出:

(error "Parse Error: Symbol 'Type' not declared as a type
   (tuple (tuple-type (Array Int Type)))) ))
                                 ^
")

Z3接受相同的数据类型声明。 这不行吗?那是个错误吗? 有任何解决方法吗?

0 个答案:

没有答案