使用截至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接受相同的数据类型声明。 这不行吗?那是个错误吗? 有任何解决方法吗?