Skip to content

Commit

Permalink
add missing status case for cancelation
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolajBjorner committed Aug 30, 2022
1 parent cd0af99 commit 8cb1182
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/math/lp/lp_settings_def.h
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}
Expand Down

0 comments on commit 8cb1182

Please sign in to comment.