mirror of
https://github.com/Z3Prover/z3
synced 2025-09-04 09:07:40 +00:00
a fix in maximize_term
Signed-off-by: Lev <levnach@hotmail.com>
This commit is contained in:
parent
01b5db63e6
commit
ef2cdc226a
3 changed files with 25 additions and 2 deletions
|
@ -28,4 +28,25 @@ enum class lia_move {
|
|||
undef,
|
||||
unsat
|
||||
};
|
||||
inline std::string lia_move_to_string(lia_move m) {
|
||||
switch (m) {
|
||||
case lia_move::sat:
|
||||
return "sat";
|
||||
case lia_move::branch:
|
||||
return "branch";
|
||||
case lia_move::cut:
|
||||
return "cut";
|
||||
case lia_move::conflict:
|
||||
return "conflict";
|
||||
case lia_move::continue_with_check:
|
||||
return "continue_with_check";
|
||||
case lia_move::undef:
|
||||
return "undef";
|
||||
case lia_move::unsat:
|
||||
return "unsat";
|
||||
default:
|
||||
lp_assert(false);
|
||||
};
|
||||
return "strange";
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue