3
0
Fork 0
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:
Nikolaj Bjorner 2022-08-30 09:43:10 -07:00
parent cd0af999a8
commit 8cb118235a

View file

@ -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();
}