mirror of
https://github.com/Z3Prover/z3
synced 2025-04-12 12:08:18 +00:00
model anomaly fix #4171
This commit is contained in:
parent
4067c84611
commit
75859ef4e4
|
@ -409,10 +409,11 @@ namespace {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
if (!m_model.is_true(res)) {
|
if (!m_model.is_true(res)) {
|
||||||
verbose_stream() << "Bad literal: " << res << "\n";
|
IF_VERBOSE(2, verbose_stream()
|
||||||
|
<< "(spacer-model-anomaly: " << res << ")\n";
|
||||||
}
|
}
|
||||||
SASSERT(m_model.is_true(res));
|
|
||||||
out.push_back(res);
|
out.push_back(res);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue