3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-29 20:05:51 +00:00

process with nex simplifications

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2019-09-26 17:18:45 -07:00
parent c076c17df9
commit 8cd9989dcf
5 changed files with 122 additions and 78 deletions

View file

@ -170,7 +170,8 @@ private:
}
bool less_than_on_expr(const nex* a, const nex* b) const {
return less_than_nex(a, b, [this](lpvar j, lpvar k) {return less_than_on_vars(j, k);});
lt_on_vars lt = [this](lpvar j, lpvar k) {return less_than_on_vars(j, k);};
return less_than_nex(a, b, lt);
}