3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-27 00:18:45 +00:00

check pb solver

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2019-02-28 14:28:03 -08:00
parent e76cea4684
commit a2dddbd7a5
3 changed files with 8 additions and 31 deletions

View file

@ -221,12 +221,7 @@ namespace sat {
void model_converter::add_elim_stack(entry & e) {
e.m_elim_stack.push_back(stackv().empty() ? nullptr : alloc(elim_stack, stackv()));
#if 0
if (!stackv().empty() && e.get_kind() == ATE) {
IF_VERBOSE(0, display(verbose_stream(), e) << "\n");
}
#endif
for (auto const& s : stackv()) VERIFY(legal_to_flip(s.second.var()));
VERIFY(for (auto const& s : stackv()) VERIFY(legal_to_flip(s.second.var())));
stackv().reset();
}