mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 11:55:51 +00:00
fixes in horner's heuristic
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
c95f66e02a
commit
207c1c509f
6 changed files with 64 additions and 17 deletions
|
@ -102,9 +102,7 @@ std::ostream& print_linear_combination_customized(const vector<std::pair<T, unsi
|
|||
val = -val;
|
||||
}
|
||||
}
|
||||
if (val == 1)
|
||||
out << " ";
|
||||
else {
|
||||
if (val != 1) {
|
||||
out << T_to_string(val);
|
||||
}
|
||||
out << var_str(it.second);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue