-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: use preprocessor to infer simple equality bounds in the solver …
…ensuring correct explanation
- Loading branch information
Showing
8 changed files
with
127 additions
and
21 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
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,19 @@ | ||
(set-info :smt-lib-version 2.6) | ||
(set-logic QF_LRA) | ||
(set-info :category "industrial") | ||
(set-info :status unsat) | ||
(declare-fun x1 () Real) | ||
(declare-fun x2 () Real) | ||
(declare-fun x3 () Real) | ||
(declare-fun x4 () Real) | ||
(declare-fun u () Real) | ||
(declare-fun g () Real) | ||
(assert (= x1 1)) | ||
(assert (<= g 0)) | ||
(assert (= x2 (+ 1 (* x1 2)))) | ||
(assert (= x3 (+ 2 (* x2 3)))) | ||
(assert (= x4 (+ 7 (* x3 5)))) | ||
(assert (= u (+ 2 (* x1 5)))) | ||
(assert (< x4 g)) | ||
(check-sat) | ||
(exit) |