mirror of
https://github.com/Z3Prover/z3
synced 2025-11-14 18:11:16 +00:00
add n-ary disjunction and conjunction
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
e518d4a5fe
commit
4c786c5f70
7 changed files with 35 additions and 6 deletions
|
|
@ -39,6 +39,8 @@ namespace smt {
|
|||
return out << "CANCELED";
|
||||
case NUM_CONFLICTS:
|
||||
return out << "NUM_CONFLICTS";
|
||||
case RESOURCE_LIMIT:
|
||||
return out << "RESOURCE_LIMIT";
|
||||
case THEORY:
|
||||
if (!m_incomplete_theories.empty()) {
|
||||
ptr_vector<theory>::const_iterator it = m_incomplete_theories.begin();
|
||||
|
|
@ -78,6 +80,7 @@ namespace smt {
|
|||
r += "))";
|
||||
break;
|
||||
}
|
||||
case RESOURCE_LIMIT: r = "(resource limits reached)"; break;
|
||||
case QUANTIFIERS: r = "(incomplete quantifiers)"; break;
|
||||
case UNKNOWN: r = m_unknown; break;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue