mirror of
https://github.com/Z3Prover/z3
synced 2025-04-15 13:28:47 +00:00
Merge branch 'master' of https://github.com/Z3Prover/z3
This commit is contained in:
commit
0439b795b4
|
@ -24,6 +24,7 @@ Notes:
|
|||
#include"sorting_network.h"
|
||||
#include"ast_util.h"
|
||||
#include"ast_pp.h"
|
||||
#include"lbool.h"
|
||||
|
||||
|
||||
struct pb2bv_rewriter::imp {
|
||||
|
@ -79,150 +80,118 @@ struct pb2bv_rewriter::imp {
|
|||
bv_util bv;
|
||||
expr_ref_vector m_trail;
|
||||
|
||||
unsigned get_num_bits(func_decl* f) {
|
||||
rational r(0);
|
||||
unsigned sz = f->get_arity();
|
||||
for (unsigned i = 0; i < sz; ++i) {
|
||||
r += pb.get_coeff(f, i);
|
||||
template<lbool is_le>
|
||||
expr_ref mk_le_ge(expr_ref_vector& fmls, expr* a, expr* b, expr* bound) {
|
||||
expr_ref x(m), y(m), result(m);
|
||||
unsigned nb = bv.get_bv_size(a);
|
||||
x = bv.mk_zero_extend(1, a);
|
||||
y = bv.mk_zero_extend(1, b);
|
||||
result = bv.mk_bv_add(x, y);
|
||||
x = bv.mk_extract(nb, nb, result);
|
||||
result = bv.mk_extract(nb-1, 0, result);
|
||||
if (is_le != l_false) {
|
||||
fmls.push_back(m.mk_eq(x, bv.mk_numeral(rational::zero(), 1)));
|
||||
fmls.push_back(bv.mk_ule(result, bound));
|
||||
}
|
||||
r = r > pb.get_k(f)? r : pb.get_k(f);
|
||||
return r.get_num_bits();
|
||||
else {
|
||||
fmls.push_back(m.mk_eq(x, bv.mk_numeral(rational::one(), 1)));
|
||||
fmls.push_back(bv.mk_ule(bound, result));
|
||||
}
|
||||
return result;
|
||||
|
||||
}
|
||||
|
||||
void mk_bv(func_decl * f, unsigned sz, expr * const* args, expr_ref & result) {
|
||||
|
||||
expr_ref zero(m), a(m), b(m);
|
||||
expr_ref_vector es(m);
|
||||
unsigned bw = get_num_bits(f);
|
||||
zero = bv.mk_numeral(rational(0), bw);
|
||||
//
|
||||
// create a circuit of size sz*log(k)
|
||||
// by forming a binary tree adding pairs of values that are assumed <= k,
|
||||
// and in each step we check that the result is <= k by checking the overflow
|
||||
// bit and that the non-overflow bits are <= k.
|
||||
// The procedure for checking >= k is symmetric and checking for = k is
|
||||
// achieved by checking <= k on intermediary addends and the resulting sum is = k.
|
||||
//
|
||||
template<lbool is_le>
|
||||
expr_ref mk_le_ge(func_decl *f, unsigned sz, expr * const* args, rational const & k) {
|
||||
if (k.is_zero()) {
|
||||
if (is_le != l_false) {
|
||||
return expr_ref(m.mk_not(mk_or(m, sz, args)), m);
|
||||
}
|
||||
else {
|
||||
return expr_ref(m.mk_true(), m);
|
||||
}
|
||||
}
|
||||
SASSERT(k.is_pos());
|
||||
expr_ref zero(m), bound(m);
|
||||
expr_ref_vector es(m), fmls(m);
|
||||
unsigned nb = k.get_num_bits();
|
||||
zero = bv.mk_numeral(rational(0), nb);
|
||||
bound = bv.mk_numeral(k, nb);
|
||||
for (unsigned i = 0; i < sz; ++i) {
|
||||
es.push_back(mk_ite(args[i], bv.mk_numeral(pb.get_coeff(f, i), bw), zero));
|
||||
}
|
||||
switch (es.size()) {
|
||||
case 0: a = zero; break;
|
||||
case 1: a = es[0].get(); break;
|
||||
default:
|
||||
a = es[0].get();
|
||||
for (unsigned i = 1; i < es.size(); ++i) {
|
||||
a = bv.mk_bv_add(a, es[i].get());
|
||||
}
|
||||
break;
|
||||
}
|
||||
b = bv.mk_numeral(pb.get_k(f), bw);
|
||||
|
||||
switch (f->get_decl_kind()) {
|
||||
case OP_AT_MOST_K:
|
||||
case OP_PB_LE:
|
||||
result = bv.mk_ule(a, b);
|
||||
break;
|
||||
case OP_AT_LEAST_K:
|
||||
case OP_PB_GE:
|
||||
result = bv.mk_ule(b, a);
|
||||
break;
|
||||
case OP_PB_EQ:
|
||||
result = m.mk_eq(a, b);
|
||||
break;
|
||||
default:
|
||||
UNREACHABLE();
|
||||
}
|
||||
TRACE("pb", tout << result << "\n";);
|
||||
}
|
||||
|
||||
bool mk_shannon(func_decl * f, unsigned sz, expr * const* args, expr_ref & result) {
|
||||
decl_kind kind = f->get_decl_kind();
|
||||
if (kind != OP_PB_GE && kind != OP_AT_LEAST_K) {
|
||||
return false;
|
||||
}
|
||||
unsigned max_clauses = sz*10;
|
||||
vector<argc_t> argcs;
|
||||
for (unsigned i = 0; i < sz; ++i) {
|
||||
argcs.push_back(argc_t(args[i], pb.get_coeff(f, i)));
|
||||
}
|
||||
std::sort(argcs.begin(), argcs.end(), argc_gt());
|
||||
DEBUG_CODE(
|
||||
for (unsigned i = 0; i + 1 < sz; ++i) {
|
||||
SASSERT(argcs[i].m_coeff >= argcs[i+1].m_coeff);
|
||||
});
|
||||
result = m.mk_app(f, sz, args);
|
||||
TRACE("pb", tout << result << "\n";);
|
||||
argc_cache cache;
|
||||
expr_ref_vector trail(m);
|
||||
vector<rational> todo_k;
|
||||
unsigned_vector todo_i;
|
||||
todo_k.push_back(pb.get_k(f));
|
||||
todo_i.push_back(0);
|
||||
argc_entry entry1;
|
||||
while (!todo_i.empty()) {
|
||||
SASSERT(todo_i.size() == todo_k.size());
|
||||
if (cache.size() > max_clauses) {
|
||||
return false;
|
||||
}
|
||||
unsigned i = todo_i.back();
|
||||
rational k = todo_k.back();
|
||||
argc_entry entry(i, k);
|
||||
if (cache.contains(entry)) {
|
||||
todo_i.pop_back();
|
||||
todo_k.pop_back();
|
||||
continue;
|
||||
}
|
||||
SASSERT(i < sz);
|
||||
SASSERT(!k.is_neg());
|
||||
rational const& coeff = argcs[i].m_coeff;
|
||||
expr* arg = argcs[i].m_arg;
|
||||
if (i + 1 == sz) {
|
||||
if (k.is_zero()) {
|
||||
entry.m_value = m.mk_true();
|
||||
}
|
||||
else if (coeff < k) {
|
||||
entry.m_value = m.mk_false();
|
||||
}
|
||||
else if (coeff.is_zero()) {
|
||||
entry.m_value = m.mk_true();
|
||||
if (pb.get_coeff(f, i) > k) {
|
||||
if (is_le != l_false) {
|
||||
fmls.push_back(m.mk_not(args[i]));
|
||||
}
|
||||
else {
|
||||
SASSERT(coeff >= k && k.is_pos());
|
||||
entry.m_value = arg;
|
||||
fmls.push_back(args[i]);
|
||||
}
|
||||
todo_i.pop_back();
|
||||
todo_k.pop_back();
|
||||
cache.insert(entry);
|
||||
continue;
|
||||
}
|
||||
entry.m_index++;
|
||||
expr* lo = 0, *hi = 0;
|
||||
if (cache.find(entry, entry1)) {
|
||||
lo = entry1.m_value;
|
||||
}
|
||||
else {
|
||||
todo_i.push_back(i+1);
|
||||
todo_k.push_back(k);
|
||||
}
|
||||
entry.m_k -= coeff;
|
||||
if (!entry.m_k.is_pos()) {
|
||||
hi = m.mk_true();
|
||||
es.push_back(mk_ite(args[i], bv.mk_numeral(pb.get_coeff(f, i), nb), zero));
|
||||
}
|
||||
else if (cache.find(entry, entry1)) {
|
||||
hi = entry1.m_value;
|
||||
}
|
||||
while (es.size() > 1) {
|
||||
for (unsigned i = 0; i + 1 < es.size(); i += 2) {
|
||||
es[i/2] = mk_le_ge<is_le>(fmls, es[i].get(), es[i+1].get(), bound);
|
||||
}
|
||||
else {
|
||||
todo_i.push_back(i+1);
|
||||
todo_k.push_back(entry.m_k);
|
||||
if ((es.size() % 2) == 1) {
|
||||
es[es.size()/2] = es.back();
|
||||
}
|
||||
if (hi && lo) {
|
||||
todo_i.pop_back();
|
||||
todo_k.pop_back();
|
||||
entry.m_index = i;
|
||||
entry.m_k = k;
|
||||
entry.m_value = mk_ite(arg, hi, lo);
|
||||
trail.push_back(entry.m_value);
|
||||
cache.insert(entry);
|
||||
}
|
||||
}
|
||||
argc_entry entry(0, pb.get_k(f));
|
||||
VERIFY(cache.find(entry, entry));
|
||||
result = entry.m_value;
|
||||
TRACE("pb", tout << result << "\n";);
|
||||
return true;
|
||||
es.shrink((1 + es.size())/2);
|
||||
}
|
||||
switch (is_le) {
|
||||
case l_true:
|
||||
return mk_and(fmls);
|
||||
case l_false:
|
||||
fmls.push_back(bv.mk_ule(bound, es.back()));
|
||||
return mk_or(fmls);
|
||||
case l_undef:
|
||||
fmls.push_back(m.mk_eq(bound, es.back()));
|
||||
return mk_and(fmls);
|
||||
default:
|
||||
UNREACHABLE();
|
||||
return expr_ref(m.mk_true(), m);
|
||||
}
|
||||
}
|
||||
|
||||
expr_ref mk_bv(func_decl * f, unsigned sz, expr * const* args) {
|
||||
decl_kind kind = f->get_decl_kind();
|
||||
rational k = pb.get_k(f);
|
||||
SASSERT(!k.is_neg());
|
||||
switch (kind) {
|
||||
case OP_PB_GE:
|
||||
case OP_AT_LEAST_K: {
|
||||
expr_ref_vector nargs(m);
|
||||
nargs.append(sz, args);
|
||||
dualize(f, nargs, k);
|
||||
SASSERT(!k.is_neg());
|
||||
return mk_le_ge<l_true>(f, sz, nargs.c_ptr(), k);
|
||||
}
|
||||
case OP_PB_LE:
|
||||
case OP_AT_MOST_K:
|
||||
return mk_le_ge<l_true>(f, sz, args, k);
|
||||
case OP_PB_EQ:
|
||||
return mk_le_ge<l_undef>(f, sz, args, k);
|
||||
default:
|
||||
UNREACHABLE();
|
||||
return expr_ref(m.mk_true(), m);
|
||||
}
|
||||
}
|
||||
|
||||
void dualize(func_decl* f, expr_ref_vector & args, rational & k) {
|
||||
k.neg();
|
||||
for (unsigned i = 0; i < args.size(); ++i) {
|
||||
k += pb.get_coeff(f, i);
|
||||
args[i] = ::mk_not(m, args[i].get());
|
||||
}
|
||||
}
|
||||
|
||||
expr* negate(expr* e) {
|
||||
|
@ -346,8 +315,8 @@ struct pb2bv_rewriter::imp {
|
|||
else if (pb.is_ge(f) && pb.get_k(f).is_unsigned() && pb.has_unit_coefficients(f)) {
|
||||
result = m_sort.ge(true, pb.get_k(f).get_unsigned(), sz, args);
|
||||
}
|
||||
else if (!mk_shannon(f, sz, args, result)) {
|
||||
mk_bv(f, sz, args, result);
|
||||
else {
|
||||
result = mk_bv(f, sz, args);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -24,7 +24,7 @@ Revision History:
|
|||
#include"datatype_decl_plugin.h"
|
||||
#include"ast_pp.h"
|
||||
#include"for_each_expr.h"
|
||||
#include<strstream>
|
||||
#include<sstream>
|
||||
|
||||
struct check_logic::imp {
|
||||
ast_manager & m;
|
||||
|
@ -189,7 +189,7 @@ struct check_logic::imp {
|
|||
else {
|
||||
m_unknown_logic = true;
|
||||
}
|
||||
|
||||
|
||||
m_logic = logic;
|
||||
}
|
||||
|
||||
|
@ -237,7 +237,7 @@ struct check_logic::imp {
|
|||
}
|
||||
}
|
||||
|
||||
void operator()(var * n) {
|
||||
void operator()(var * n) {
|
||||
if (!m_quantifiers)
|
||||
fail("logic does not support quantifiers");
|
||||
check_sort(m.get_sort(n));
|
||||
|
@ -279,7 +279,7 @@ struct check_logic::imp {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// check if the divisor is a numeral
|
||||
void check_div(app * n) {
|
||||
SASSERT(n->get_num_args() == 2);
|
||||
|
@ -328,8 +328,8 @@ struct check_logic::imp {
|
|||
return false;
|
||||
non_numeral = arg;
|
||||
}
|
||||
if (non_numeral == 0)
|
||||
return true;
|
||||
if (non_numeral == 0)
|
||||
return true;
|
||||
if (is_diff_var(non_numeral))
|
||||
return true;
|
||||
if (!m_a_util.is_add(non_numeral) && !m_a_util.is_sub(non_numeral))
|
||||
|
@ -338,10 +338,10 @@ struct check_logic::imp {
|
|||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
bool is_diff_arg(expr * t) {
|
||||
if (is_diff_var(t))
|
||||
return true;
|
||||
return true;
|
||||
if (is_numeral(t))
|
||||
return true;
|
||||
if (m_a_util.is_add(t) || m_a_util.is_sub(t))
|
||||
|
@ -366,7 +366,7 @@ struct check_logic::imp {
|
|||
expr * t1 = to_app(lhs)->get_arg(0);
|
||||
expr * t2 = to_app(lhs)->get_arg(1);
|
||||
if (is_diff_var(t1) && is_diff_var(t2))
|
||||
return;
|
||||
return;
|
||||
if (m_a_util.is_add(t1) && m_a_util.is_add(t2)) {
|
||||
// QF_RDL supports (<= (- (+ x ... x) (+ y ... y)) c)
|
||||
if (to_app(t1)->get_num_args() != to_app(t2)->get_num_args())
|
||||
|
@ -391,7 +391,7 @@ struct check_logic::imp {
|
|||
check_diff_arg(n);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void operator()(app * n) {
|
||||
sort * s = m.get_sort(n);
|
||||
check_sort(s);
|
||||
|
@ -415,18 +415,18 @@ struct check_logic::imp {
|
|||
if (!m_ints || !m_reals) {
|
||||
if (m_a_util.is_to_real(n) || m_a_util.is_to_int(n))
|
||||
fail("logic does not support casting operators");
|
||||
}
|
||||
}
|
||||
}
|
||||
else if (fid == m_bv_util.get_family_id()) {
|
||||
// nothing to check...
|
||||
// nothing to check...
|
||||
}
|
||||
else if (fid == m_ar_util.get_family_id()) {
|
||||
// nothing to check...
|
||||
// nothing to check...
|
||||
if (m_diff)
|
||||
check_diff_args(n);
|
||||
}
|
||||
else if (fid == m.get_basic_family_id()) {
|
||||
// nothing to check...
|
||||
// nothing to check...
|
||||
if (m_diff) {
|
||||
if (m.is_eq(n))
|
||||
check_diff_predicate(n);
|
||||
|
@ -449,8 +449,8 @@ struct check_logic::imp {
|
|||
fail(strm.str().c_str());
|
||||
}
|
||||
}
|
||||
|
||||
void operator()(quantifier * n) {
|
||||
|
||||
void operator()(quantifier * n) {
|
||||
if (!m_quantifiers)
|
||||
fail("logic does not support quantifiers");
|
||||
}
|
||||
|
@ -490,7 +490,7 @@ struct check_logic::imp {
|
|||
check_logic::check_logic() {
|
||||
m_imp = 0;
|
||||
}
|
||||
|
||||
|
||||
check_logic::~check_logic() {
|
||||
if (m_imp)
|
||||
dealloc(m_imp);
|
||||
|
|
|
@ -1056,6 +1056,11 @@ namespace smt {
|
|||
inf_eps_rational<inf_rational> theory_arith<Ext>::maximize(theory_var v, expr_ref& blocker, bool& has_shared) {
|
||||
TRACE("bound_bug", display_var(tout, v); display(tout););
|
||||
has_shared = false;
|
||||
if (!m_nl_monomials.empty()) {
|
||||
has_shared = true;
|
||||
blocker = mk_gt(v);
|
||||
return inf_eps_rational<inf_rational>(get_value(v));
|
||||
}
|
||||
max_min_t r = max_min(v, true, true, has_shared);
|
||||
if (r == UNBOUNDED) {
|
||||
has_shared = false;
|
||||
|
@ -1300,6 +1305,7 @@ namespace smt {
|
|||
|
||||
*/
|
||||
|
||||
|
||||
|
||||
template<typename Ext>
|
||||
bool theory_arith<Ext>::pick_var_to_leave(
|
||||
|
@ -1331,7 +1337,7 @@ namespace smt {
|
|||
if (update_gains(inc, s, coeff_ij, min_gain, max_gain) ||
|
||||
(x_i == null_theory_var && !unbounded_gain(max_gain))) {
|
||||
x_i = s;
|
||||
a_ij = coeff_ij;
|
||||
a_ij = coeff_ij;
|
||||
}
|
||||
has_shared |= ctx.is_shared(get_enode(s));
|
||||
}
|
||||
|
|
|
@ -416,7 +416,7 @@ static void test_at_most1() {
|
|||
for (unsigned i = 0; i < 5; ++i) {
|
||||
in.push_back(m.mk_fresh_const("a",m.mk_bool_sort()));
|
||||
}
|
||||
in[4] = in[3];
|
||||
in[4] = in[3].get();
|
||||
|
||||
ast_ext2 ext(m);
|
||||
psort_nw<ast_ext2> sn(ext);
|
||||
|
|
Loading…
Reference in a new issue