Skip to content

Commit

Permalink
remove divergent ordering
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
  • Loading branch information
NikolajBjorner committed Nov 5, 2019
1 parent 23029da commit 8a420c8
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions src/smt/asserted_formulas.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 8a420c8

Please sign in to comment.