Remove benchmark (#3389)
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>
Mon, 14 Oct 2019 20:53:55 +0000 (15:53 -0500)
committerGitHub <noreply@github.com>
Mon, 14 Oct 2019 20:53:55 +0000 (15:53 -0500)
test/regress/CMakeLists.txt
test/regress/regress1/sygus/repair-const-unk.sy [deleted file]

index 25637acdcd2502268fee578a1206b589cd8eda84..876751b0267d6562a4da24a09d52c2bfc32117b9 100644 (file)
@@ -1729,7 +1729,6 @@ set(regress_1_tests
   regress1/sygus/qf_abv.smt2
   regress1/sygus/real-grammar.sy
   regress1/sygus/repair-const-rl.sy
-  regress1/sygus/repair-const-unk.sy
   regress1/sygus/simple-regexp.sy
   regress1/sygus/stopwatch-bt.sy
   regress1/sygus/strings-no-syntax.sy
diff --git a/test/regress/regress1/sygus/repair-const-unk.sy b/test/regress/regress1/sygus/repair-const-unk.sy
deleted file mode 100644 (file)
index fdd8185..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-; EXPECT: unknown
-; COMMAND-LINE: --sygus-out=status --sygus-repair-const --lang=sygus2
-(set-logic LIA)
-(synth-fun f ((x Int) (y Int)) Int
-  ((Start Int) (CInt Int))
-  (
-    (Start Int ((+ (* CInt x) (* CInt y) CInt)))
-    (CInt Int ((Constant Int)))
-  )
-)
-(declare-var x Int)
-(declare-var y Int)
-(constraint (= (f 0 0) 100))
-(constraint (= (f 1 1) 110))
-(constraint (= (f 2 1) 117))
-(constraint (>= (- (* 3 (f x y)) (f (* 2 x) (+ y 1))) (+ (* 7 x) (* 6 y))))
-(check-synth)