-
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.
Minor fix for MBQI, add regressions for fixed issues (cvc5#11186)
Two issues were fixed by dropping an experimental sets option, the 3rd is fixed by not allowing certain kinds of terms to appear in MBQI reasoning. Fixes cvc5/cvc5-projects#733. Fixes cvc5/cvc5-projects#731. Fixes cvc5/cvc5-projects#728.
- Loading branch information
Showing
5 changed files
with
31 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
; EXPECT: sat | ||
(set-logic ALL) | ||
(set-option :sets-ext true) | ||
(set-option :debug-check-models true) | ||
(assert (set.is_singleton (set.complement (set.singleton roundTowardZero)))) | ||
(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,8 @@ | ||
; EXPECT: unsat | ||
(set-logic ALL) | ||
(set-option :sets-ext true) | ||
(set-option :debug-check-models true) | ||
(declare-sort _u0 0) | ||
(declare-const _x3 _u0) | ||
(assert (set.subset (set.singleton _x3) (set.complement (set.singleton _x3)))) | ||
(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 @@ | ||
; COMMAND-LINE: -q | ||
; EXPECT: sat | ||
(set-logic ALL) | ||
(set-option :mbqi-fast-sygus true) | ||
(declare-const x (Seq Bool)) | ||
(assert (distinct (seq.at x 9510904) (seq.++ (seq.at x 9510904) (seq.rev (seq.at x 9510904))))) | ||
(check-sat) |