-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* mcsat uf model fix * test case * minor * update test
- Loading branch information
1 parent
5df56b7
commit e3b0884
Showing
4 changed files
with
22 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
(set-option :print-success false) | ||
(set-option :produce-models true) | ||
(set-logic QF_UFNRA) | ||
(declare-sort x4 0) | ||
(declare-fun x2 () x4) | ||
(declare-fun x1 () x4) | ||
(declare-fun x6 () Real) | ||
(declare-fun x3 (Real) Real) | ||
(declare-fun x5 () Real) | ||
(assert (> (* x5 2.0) x6)) | ||
(assert (< x5 x6)) | ||
(assert (not (= (x3 (- x6 x5)) 0.0))) | ||
(assert (not (not (= (x3 x6) 0.0)))) | ||
(assert (not (= x2 x1))) | ||
(check-sat) | ||
(exit) |
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 @@ | ||
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 @@ | ||
--mcsat --trace mcsat::model::check |