3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 17:15:31 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2019-12-26 14:41:09 -08:00
parent 914856b9ba
commit 1d77e3e19f

View file

@ -752,7 +752,7 @@ br_status bool_rewriter::mk_distinct_core(unsigned num_args, expr * const * args
if (!m().is_unique_value(arg))
all_value = false;
if (!all_value && all_diff) {
for (unsigned j = 0; all_diff && j + 1 < i; ++j) {
for (unsigned j = 0; all_diff && j < i; ++j) {
all_diff = m().are_distinct(arg, args[j]);
}
}