3
0
Fork 0
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:
Nikolaj Bjorner 2026-07-01 07:52:52 -07:00
parent 1f3b053f9e
commit 052e1a54a6

View file

@ -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;
}