mirror of
https://github.com/Z3Prover/z3
synced 2025-07-19 10:52:02 +00:00
bail out on failure to properly project. issue #837
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
20790c46ee
commit
ff46a925a2
1 changed files with 1 additions and 1 deletions
|
@ -909,7 +909,7 @@ namespace qe {
|
||||||
num_scopes = 2;
|
num_scopes = 2;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
if (level.max() + 2 > m_level) return false;
|
if (level.max() + 2 > m_level) return false;
|
||||||
SASSERT(level.max() + 2 <= m_level);
|
SASSERT(level.max() + 2 <= m_level);
|
||||||
num_scopes = m_level - level.max();
|
num_scopes = m_level - level.max();
|
||||||
SASSERT(num_scopes >= 2);
|
SASSERT(num_scopes >= 2);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue