3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 01:25:31 +00:00

wip - fixes to simplifiers

This commit is contained in:
Nikolaj Bjorner 2022-12-01 09:31:52 +09:00
parent cfc8e19baf
commit f24ecde35c
5 changed files with 34 additions and 15 deletions

View file

@ -63,7 +63,7 @@ class sat_smt_solver : public solver {
std::ostream& display(std::ostream& out) const override {
unsigned i = 0;
for (auto const& d : s.m_fmls) {
if (i == qhead())
if (i > 0 && i == qhead())
out << "---- head ---\n";
out << d << "\n";
++i;