3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-08 00:05:46 +00:00

adding stub check_int_feasibility()

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2017-05-23 15:46:53 -07:00
parent 21bddd94bf
commit 1f425824ff
3 changed files with 13 additions and 1 deletions

View file

@ -16,6 +16,13 @@ namespace lean {
typedef unsigned var_index;
typedef unsigned constraint_index;
typedef unsigned row_index;
enum class final_check_status {
DONE,
CONTINUE,
GIVEUP
};
enum class column_type {
free_column = 0,
low_bound = 1,