mirror of
https://github.com/Z3Prover/z3
synced 2025-04-28 11:25:51 +00:00
add sort stumps for expressions
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
27a27f16ff
commit
705607fba0
8 changed files with 195 additions and 58 deletions
|
@ -92,7 +92,9 @@ bool horner::lemmas_on_row(const T& row) {
|
|||
cross_nested cn(
|
||||
[this](const nex* n) { return check_cross_nested_expr(n); },
|
||||
[this](unsigned j) { return c().var_is_fixed(j); },
|
||||
[this]() { return c().random(); }
|
||||
[this]() { return c().random(); },
|
||||
[](const nex* a, const nex* b) { return
|
||||
less_than_nex(a, b, [](lpvar j, lpvar k) { return j < k;}); }
|
||||
);
|
||||
|
||||
SASSERT (row_is_interesting(row));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue