mirror of
https://github.com/Z3Prover/z3
synced 2025-04-10 19:27:06 +00:00
add missing status case for cancelation
This commit is contained in:
parent
cd0af999a8
commit
8cb118235a
|
@ -49,6 +49,7 @@ const char* lp_status_to_string(lp_status status) {
|
|||
case lp_status::TIME_EXHAUSTED: return "TIME_EXHAUSTED";
|
||||
case lp_status::EMPTY: return "EMPTY";
|
||||
case lp_status::UNSTABLE: return "UNSTABLE";
|
||||
case lp_status::CANCELLED: return "CANCELLED";
|
||||
default:
|
||||
lp_unreachable();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue