mirror of
https://github.com/Z3Prover/z3
synced 2025-04-27 19:05:51 +00:00
avoid adding constantly false statements to the lemma
Signed-off-by: Lev <levnach@hotmail.com>
This commit is contained in:
parent
dbfa3fc84a
commit
489da283bb
3 changed files with 4 additions and 2 deletions
|
@ -29,7 +29,6 @@ namespace lp {
|
|||
|
||||
enum lconstraint_kind { LE = -2, LT = -1 , GE = 2, GT = 1, EQ = 0, NE = 3 };
|
||||
|
||||
|
||||
inline bool kind_is_strict(lconstraint_kind kind) { return kind == LT || kind == GT;}
|
||||
|
||||
inline std::ostream& operator<<(std::ostream& out, lconstraint_kind k) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue