mirror of
https://github.com/Z3Prover/z3
synced 2025-04-05 17:14:07 +00:00
remove divergent ordering
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
23029daf5e
commit
8a420c850b
|
@ -556,14 +556,6 @@ bool asserted_formulas::is_gt(expr* lhs, expr* rhs) {
|
|||
return false;
|
||||
}
|
||||
SASSERT(is_ground(lhs) && is_ground(rhs));
|
||||
#if 0
|
||||
if (is_uninterp_const(lhs) && is_app(rhs) && to_app(rhs)->get_num_args() > 0 && !occurs(lhs, rhs)) {
|
||||
return true;
|
||||
}
|
||||
if (is_uninterp_const(rhs) && is_app(lhs) && to_app(lhs)->get_num_args() > 0 && !occurs(rhs, lhs)) {
|
||||
return false;
|
||||
}
|
||||
#endif
|
||||
if (depth(lhs) > depth(rhs)) {
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue