3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-27 19:05:51 +00:00

fix the merge

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2019-05-23 03:27:31 -07:00
parent 3b9b4d973b
commit b6513b8e2d
9 changed files with 20 additions and 535 deletions

View file

@ -24,10 +24,10 @@ Revision History:
#include <algorithm>
#include <utility>
#include "util/lp/column_info.h"
#include "util/lp/lp_types.h"
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;}