Minor fix to SMT v2 parser tests
authorChristopher L. Conway <christopherleeconway@gmail.com>
Thu, 29 Apr 2010 19:45:21 +0000 (19:45 +0000)
committerChristopher L. Conway <christopherleeconway@gmail.com>
Thu, 29 Apr 2010 19:45:21 +0000 (19:45 +0000)
test/unit/parser/parser_black.h

index b7fbf243f66dc92dada586d48319c8fca2ea72d5..0389a75efb98c4d2ddba8db200b032b462805939 100644 (file)
@@ -154,8 +154,8 @@ const string goodSmt2Inputs[] = {
     "(assert false) (check-sat)",
     "(declare-fun a () Bool) (declare-fun b () Bool)",
     "(declare-fun a () Bool) (declare-fun b () Bool) (assert (=> (and (=> a b) a) b))",
-    "(declare-sort a 1) (declare-fun f (a) a) (declare-fun x () a) (assert (= (f x) x))",
-    "(declare-sort a 1) (declare-fun x () a) (declare-fun y () a) (assert (= (ite true x y) x))",
+    "(declare-sort a 0) (declare-fun f (a) a) (declare-fun x () a) (assert (= (f x) x))",
+    "(declare-sort a 0) (declare-fun x () a) (declare-fun y () a) (assert (= (ite true x y) x))",
     ";; nothing but a comment",
     "; a comment\n(check-sat ; goodbye\n)"
   };
@@ -181,7 +181,7 @@ const string badSmt2Inputs[] = {
     "(assert)", // no args
     "(check-sat true)", // shouldn't have an arg
     "(declare-sort a)", // no arg
-    "(declare-sort a 1) (declare-sort a 1)", // double decl
+    "(declare-sort a 0) (declare-sort a 0)", // double decl
     "(declare-fun p Bool)" // should be "p () Bool"
   };