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:
parent
c076c17df9
commit
8cd9989dcf
5 changed files with 122 additions and 78 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue