summaryrefslogtreecommitdiff
path: root/test/regress/regress0/bv
diff options
context:
space:
mode:
authoryoni206 <yoni206@users.noreply.github.com>2020-10-14 12:40:13 -0700
committerGitHub <noreply@github.com>2020-10-14 14:40:13 -0500
commit42dd10f9936c6a9be158842f482cc7ebd4a972ed (patch)
treef55e21c2367039abd214e3880644fa769548ed84 /test/regress/regress0/bv
parent155e35ec2b38771917312d35f784a2e35b4b41d3 (diff)
bv2int: implementing the iand-sum mode (#5265)
There are 3 potential modes to lazily treat the iand operator: (1) by value (typical CEGAR loop) (2) by sum (lazily expanding each iand node into a sum of ITEs) (3) by bit-wise equalities (lazily expanding each iand node into bit-wise equalities) This PR implements (2). The relevant option is added to existing tests, and a new test is added. In a few other tests, some options are removed to make them run faster.
Diffstat (limited to 'test/regress/regress0/bv')
-rw-r--r--test/regress/regress0/bv/bv_to_int1.smt23
1 files changed, 0 insertions, 3 deletions
diff --git a/test/regress/regress0/bv/bv_to_int1.smt2 b/test/regress/regress0/bv/bv_to_int1.smt2
index 8410d04b9..3908cdb16 100644
--- a/test/regress/regress0/bv/bv_to_int1.smt2
+++ b/test/regress/regress0/bv/bv_to_int1.smt2
@@ -1,7 +1,4 @@
; COMMAND-LINE: --solve-bv-as-int=sum --bvand-integer-granularity=1
-; COMMAND-LINE: --solve-bv-as-int=sum --bvand-integer-granularity=2
-; COMMAND-LINE: --solve-bv-as-int=sum --bvand-integer-granularity=3
-; COMMAND-LINE: --solve-bv-as-int=sum --bvand-integer-granularity=4
; EXPECT: unsat
(set-logic QF_BV)
(declare-fun x () (_ BitVec 4))
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback