CVC4最多可以为运营商' ITE'提供3个参数,找到5个

时间:2016-01-08 14:01:46

标签: cvc4

将以下文件输入cvc4时,出现以下错误:

(error "Parse Error: <stdin>:11.221: Expecting at most 3 arguments for operator 'ITE', found 5")

文件test.txt是:

(declare-fun start!1 () Bool)

(assert start!1)

(declare-fun lt!2 () String)

(declare-datatypes () ( (JValue!1 (JInt!1 (v!75 (_ BitVec 32))) (JString!1 (v!76 String))) ))

(declare-fun a!0 () JValue!1)

(assert (=> start!1 (not (= lt!2 (ite false "" (ite (and (is-JString!1 a!0) (= (v!76 a!0) "")) """""" (ite (and (is-JInt!1 a!0) (= (v!75 a!0) #x00000000)) "0" (ite (and (is-JString!1 a!0) (= (v!76 a!0) "a")) """a""" lt!2))))))))

命令行:

cat test.txt | cvc4.exe

1 个答案:

答案 0 :(得分:1)

我需要为格式添加选项--lang smt2.5,以支持使用新标准进行双引号转义。

所以:

cat test.txt | cvc4.exe --lang smt2.5