mirror of
https://github.com/Z3Prover/z3
synced 2026-06-06 09:00:52 +00:00
Typo in pp: lt != le
This commit is contained in:
parent
55ea1929e9
commit
22583a7abd
1 changed files with 1 additions and 1 deletions
|
|
@ -159,7 +159,7 @@ namespace seq {
|
||||||
}
|
}
|
||||||
if (m.is_not(e, x))
|
if (m.is_not(e, x))
|
||||||
return "!(" + arith_expr_html(x, names, next_id, m) + ")";
|
return "!(" + arith_expr_html(x, names, next_id, m) + ")";
|
||||||
if (arith.is_le(e, x, y)) {
|
if (arith.is_lt(e, x, y)) {
|
||||||
return arith_expr_html(x, names, next_id, m) + " < " + arith_expr_html(y, names, next_id, m);
|
return arith_expr_html(x, names, next_id, m) + " < " + arith_expr_html(y, names, next_id, m);
|
||||||
}
|
}
|
||||||
if (arith.is_gt(e, x, y)) {
|
if (arith.is_gt(e, x, y)) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue