Skip to content

Commit

Permalink
revert
Browse files Browse the repository at this point in the history
  • Loading branch information
yoni206 committed Aug 1, 2024
1 parent 511c9de commit af243d7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/regress/cli/regress0/bv/overflow/saddo1.smt2
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
; EXPECT: unsat
(set-logic QF_BV)
(declare-const v (_ BitVec 6))
(assert (and (bvsgt v (_ bv32 6)) (not (bvsaddo v v))))
(assert (and (= (bvadd v v) (_ bv53 6)) (not (bvsaddo v v))))
(check-sat)
2 changes: 1 addition & 1 deletion test/regress/cli/regress0/bv/overflow/uaddo1.smt2
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
; EXPECT: unsat
(set-logic QF_BV)
(declare-const v (_ BitVec 6))
(assert (and (ugt v (_ bv32 6)) (not (bvuaddo v v))))
(assert (and (= (bvadd v v) (_ bv53 6)) (not (bvuaddo v v))))
(check-sat)

0 comments on commit af243d7

Please sign in to comment.