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:
parent
cfc8e19baf
commit
f24ecde35c
5 changed files with 34 additions and 15 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue