3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 09:05:31 +00:00

missing switch cases

This commit is contained in:
Nikolaj Bjorner 2022-04-19 16:20:02 +01:00
parent 5393f1d98f
commit ec57d3b15c
3 changed files with 15 additions and 3 deletions

View file

@ -169,6 +169,12 @@ public:
case s_primal_binary_delay:
m_trace_id = "maxres-bin-delay";
break;
case s_rc2:
m_trace_id = "rc2";
break;
default:
UNREACHABLE();
break;
}
}
@ -371,6 +377,7 @@ public:
case s_primal:
case s_primal_binary:
case s_primal_binary_delay:
case s_rc2:
return mus_solver();
case s_primal_dual:
return primal_dual_solver();