File tree 1 file changed +2
-5
lines changed
1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,6 @@ namespace lp {
28
28
conflict,
29
29
continue_with_check,
30
30
undef,
31
- unsat,
32
31
cancelled
33
32
};
34
33
inline std::string lia_move_to_string (lia_move m) {
@@ -45,8 +44,8 @@ namespace lp {
45
44
return " continue_with_check" ;
46
45
case lia_move::undef:
47
46
return " undef" ;
48
- case lia_move::unsat :
49
- return " unsat " ;
47
+ case lia_move::cancelled :
48
+ return " cancelled " ;
50
49
default :
51
50
UNREACHABLE ();
52
51
};
@@ -62,8 +61,6 @@ namespace lp {
62
61
return r1;
63
62
if (r1 == lia_move::conflict || r2 == lia_move::conflict)
64
63
return lia_move::conflict;
65
- if (r1 == lia_move::unsat || r2 == lia_move::unsat)
66
- return lia_move::unsat;
67
64
if (r1 == lia_move::cancelled || r2 == lia_move::cancelled)
68
65
return lia_move::cancelled;
69
66
if (r1 == lia_move::sat || r2 == lia_move::sat)
You can’t perform that action at this time.
0 commit comments