From ddb6ae4eab44b8f2fab6c5b9184e8d13a7c7b880 Mon Sep 17 00:00:00 2001 From: mikolas Date: Sun, 3 Apr 2016 18:27:56 +0100 Subject: [PATCH] More work on trailing 0 analysis. --- src/ast/rewriter/bv_trailing.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ast/rewriter/bv_trailing.cpp b/src/ast/rewriter/bv_trailing.cpp index 67bbacfd4..eccd2e8cb 100644 --- a/src/ast/rewriter/bv_trailing.cpp +++ b/src/ast/rewriter/bv_trailing.cpp @@ -46,7 +46,7 @@ struct bv_trailing::imp { unsigned max1, min1, max2, min2; count_trailing(e1, min1, max1, TRAILING_DEPTH); count_trailing(e2, min2, max2, TRAILING_DEPTH); - if (min1 > max2 || min2 > max2) { + if (min1 > max2 || min2 > max1) { result = m().mk_false(); return BR_DONE; }