-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Never assign values to evaluable equivalence classes (cvc5#11322)
Fixes cvc5#10494. This also changes how the nonlinear solver "buffers" lemmas. Previously, it would not report a failure, expect model construction to fail, and then immediately send the buffered lemmas at last call effort. Instead, it now indicates that model construction fails. Note that when model construction fails, LAST_CALL effort is not run. Instead, we now send these buffered lemmas when being asked if a LAST_CALL effort should be performed (prior to model construction).
- Loading branch information
Showing
6 changed files
with
57 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
; EXPECT: sat | ||
(set-logic ALL) | ||
(declare-const a (Array Int (_ BitVec 1))) | ||
(assert (= a (store a 0 (bvadd #b1 (select a 1))))) | ||
(check-sat) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
; EXPECT: sat | ||
(set-logic ALL) | ||
(declare-const a (Array (_ BitVec 64) (_ BitVec 64)) ) | ||
(declare-const b (_ BitVec 64) ) | ||
(assert ( = a ( store a ( bvneg ( bvneg #x1111111111111111 ) ) | ||
( bvadd #x1111111111111111 ( select a #x0000000000000000 ) ) ) ) ) | ||
( check-sat ) |