summaryrefslogtreecommitdiff
path: root/test/regress/regress1
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2019-10-14 15:53:55 -0500
committerGitHub <noreply@github.com>2019-10-14 15:53:55 -0500
commit366a361ad46e81972f5631fd5df8f725d0e2f4bc (patch)
treeea77d876185d4afcfc109d49da1f69e4ef6c25f4 /test/regress/regress1
parentd31b7cb6e695d6489134956408858a94d2308178 (diff)
Remove benchmark (#3389)
Diffstat (limited to 'test/regress/regress1')
-rw-r--r--test/regress/regress1/sygus/repair-const-unk.sy17
1 files changed, 0 insertions, 17 deletions
diff --git a/test/regress/regress1/sygus/repair-const-unk.sy b/test/regress/regress1/sygus/repair-const-unk.sy
deleted file mode 100644
index fdd818592..000000000
--- a/test/regress/regress1/sygus/repair-const-unk.sy
+++ /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)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback