3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-28 11:25:51 +00:00

fix the build

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2019-08-23 16:36:17 -07:00
parent 58854fa44b
commit 3d2fc57b82
3 changed files with 14 additions and 6 deletions

View file

@ -91,8 +91,9 @@ template <typename T>
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](unsigned j) { return c().var_is_fixed(j); },
[this]() { return c().random(); }
);
SASSERT (row_is_interesting(row));
create_sum_from_row(row, cn);