-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
I'm not sure combining like terms can be expressed in a single pass (without fully flattening) Thanks for setting up the fuzzer, Mathias! fixes cvc5/cvc5-projects#704
- Loading branch information
1 parent
58a68cf
commit f8c069c
Showing
3 changed files
with
15 additions
and
2 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,8 @@ | ||
; SCRUBBER: grep -w 'sat' | ||
(set-option :check-models true) | ||
(set-logic QF_FF) | ||
(set-info :status sat) | ||
(declare-const x (_ FiniteField 13)) | ||
(check-sat) | ||
(get-value ((ff.add (ff.mul x x) (ff.mul (ff.mul #f93m13 (ff.neg #f93m13)) (ff.add #f93m13 (ff.mul x x) (ff.mul #f93m13 (ff.neg #f93m13)))) (ff.mul (ff.mul #f93m13 (ff.neg #f93m13)) (ff.add #f93m13 (ff.mul x x) (ff.mul #f93m13 (ff.neg #f93m13)))) (ff.mul (ff.mul #f93m13 (ff.neg #f93m13)) (ff.add #f93m13 (ff.mul x x) (ff.mul #f93m13 (ff.neg #f93m13))))))) | ||
|