mirror of
https://github.com/Z3Prover/z3
synced 2026-07-15 03:25:43 +00:00
outline opaque splitter
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
1f3b053f9e
commit
052e1a54a6
1 changed files with 3 additions and 3 deletions
|
|
@ -127,20 +127,20 @@ struct split_set2::iterator::imp {
|
|||
}
|
||||
|
||||
void next() {
|
||||
m_qhead++;
|
||||
while (!at_end()) {
|
||||
m_qhead++;
|
||||
if (has_split())
|
||||
return;
|
||||
if (m_cartesian) {
|
||||
m_cartesian->consume();
|
||||
if (!m_splits.empty())
|
||||
if (has_split())
|
||||
return;
|
||||
m_cartesian = nullptr;
|
||||
}
|
||||
|
||||
if (m_complement) {
|
||||
m_complement->consume();
|
||||
if (!m_splits.empty())
|
||||
if (has_split())
|
||||
return;
|
||||
m_complement = nullptr;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue