mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 09:05:31 +00:00
missing switch cases
This commit is contained in:
parent
5393f1d98f
commit
ec57d3b15c
3 changed files with 15 additions and 3 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue