summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2020-03-31 15:25:01 -0500
committerGitHub <noreply@github.com>2020-03-31 15:25:01 -0500
commitbded1a268b0ca9959ca1223dd04de8db535cc99a (patch)
treec446b7890f9b650906072ad30052eb0b02206c1c
parent63f887783e003546bf8de4501774a79dbcf8d4b0 (diff)
Fix fmf benchmark (#4193)
Fixes regress1. This benchmark is too delicate in the current state.
-rw-r--r--test/regress/regress1/fmf/fmf-strange-bounds.smt25
1 files changed, 2 insertions, 3 deletions
diff --git a/test/regress/regress1/fmf/fmf-strange-bounds.smt2 b/test/regress/regress1/fmf/fmf-strange-bounds.smt2
index bdbca4bd0..20738245c 100644
--- a/test/regress/regress1/fmf/fmf-strange-bounds.smt2
+++ b/test/regress/regress1/fmf/fmf-strange-bounds.smt2
@@ -17,11 +17,10 @@
(assert (>= (h (g 77)) 2))
(assert (not (= (g 77) (f 77))))
-(assert (forall ((x Int) (y Int) (z U)) (=>
+(assert (forall ((x Int) (z U)) (=>
(or (= z (f x)) (= z (g x)))
(=> (member x S)
-(=> (and (<= 0 y) (<= y (h z)))
-(P x y z))))))
+(P x 0 z)))))
(assert (forall ((x Int) (y Int) (z U)) (=>
(or (= x 5) (= x 6))
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback