3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 09:34:08 +00:00

model anomaly fix #4171

This commit is contained in:
Nikolaj Bjorner 2020-05-02 15:53:46 -07:00
parent 4067c84611
commit 75859ef4e4

View file

@ -409,10 +409,11 @@ namespace {
}
}
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);
}