3
0
Fork 0
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:
Lev 2018-12-12 14:57:04 -10:00 committed by Lev Nachmanson
parent dbfa3fc84a
commit 489da283bb
3 changed files with 4 additions and 2 deletions

View file

@ -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) {