3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-24 14:53:40 +00:00

perf improvements

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2018-02-10 11:43:33 -08:00
parent e183f8b743
commit 4695ca16c8
3 changed files with 22 additions and 4 deletions

View file

@ -610,7 +610,7 @@ struct pb2bv_rewriter::imp {
m_keep_pb_constraints(false), m_keep_pb_constraints(false),
m_pb_num_system(false), m_pb_num_system(false),
m_pb_totalizer(false), m_pb_totalizer(false),
m_min_arity(2) m_min_arity(3)
{} {}
bool mk_app(bool full, func_decl * f, unsigned sz, expr * const* args, expr_ref & result) { bool mk_app(bool full, func_decl * f, unsigned sz, expr * const* args, expr_ref & result) {

View file

@ -213,13 +213,13 @@ namespace sat {
return true; return true;
} }
// ---------------------------- // ----------------------------
// card // card
bool ba_solver::init_watch(card& c) { bool ba_solver::init_watch(card& c) {
clear_watch(c);
literal root = c.lit(); literal root = c.lit();
if (root != null_literal && value(root) == l_false) { if (root != null_literal && value(root) == l_false) {
clear_watch(c);
c.negate(); c.negate();
root.neg(); root.neg();
} }
@ -240,6 +240,10 @@ namespace sat {
for (unsigned i = 0; i < sz; ++i) { for (unsigned i = 0; i < sz; ++i) {
if (value(c[i]) != l_false) { if (value(c[i]) != l_false) {
if (j != i) { if (j != i) {
if (c.is_watched() && j <= bound && i > bound) {
unwatch_literal(c[j], c);
watch_literal(c[i], c);
}
c.swap(i, j); c.swap(i, j);
} }
++j; ++j;
@ -255,6 +259,7 @@ namespace sat {
// j is the number of non-false, sz - j the number of false. // j is the number of non-false, sz - j the number of false.
if (j < bound) { if (j < bound) {
if (c.is_watched()) clear_watch(c);
SASSERT(0 < bound && bound < sz); SASSERT(0 < bound && bound < sz);
literal alit = c[j]; literal alit = c[j];
@ -280,14 +285,19 @@ namespace sat {
return false; return false;
} }
else { else {
if (c.is_watched()) return true;
clear_watch(c);
for (unsigned i = 0; i <= bound; ++i) { for (unsigned i = 0; i <= bound; ++i) {
watch_literal(c[i], c); watch_literal(c[i], c);
} }
c.set_watch();
return true; return true;
} }
} }
void ba_solver::clear_watch(card& c) { void ba_solver::clear_watch(card& c) {
if (c.is_clear()) return;
c.clear_watch();
unsigned sz = std::min(c.k() + 1, c.size()); unsigned sz = std::min(c.k() + 1, c.size());
for (unsigned i = 0; i < sz; ++i) { for (unsigned i = 0; i < sz; ++i) {
unwatch_literal(c[i], c); unwatch_literal(c[i], c);
@ -747,6 +757,7 @@ namespace sat {
} }
void ba_solver::clear_watch(pb& p) { void ba_solver::clear_watch(pb& p) {
p.clear_watch();
for (unsigned i = 0; i < p.num_watch(); ++i) { for (unsigned i = 0; i < p.num_watch(); ++i) {
unwatch_literal(p[i].second, p); unwatch_literal(p[i].second, p);
} }
@ -896,6 +907,7 @@ namespace sat {
// xr: // xr:
void ba_solver::clear_watch(xr& x) { void ba_solver::clear_watch(xr& x) {
x.clear_watch();
unwatch_literal(x[0], x); unwatch_literal(x[0], x);
unwatch_literal(x[1], x); unwatch_literal(x[1], x);
unwatch_literal(~x[0], x); unwatch_literal(~x[0], x);

View file

@ -63,6 +63,7 @@ namespace sat {
tag_t m_tag; tag_t m_tag;
bool m_removed; bool m_removed;
literal m_lit; literal m_lit;
literal m_watch;
unsigned m_glue; unsigned m_glue;
unsigned m_psm; unsigned m_psm;
unsigned m_size; unsigned m_size;
@ -70,7 +71,8 @@ namespace sat {
bool m_learned; bool m_learned;
unsigned m_id; unsigned m_id;
public: public:
constraint(tag_t t, unsigned id, literal l, unsigned sz, size_t osz): m_tag(t), m_removed(false), m_lit(l), m_glue(0), m_psm(0), m_size(sz), m_obj_size(osz), m_learned(false), m_id(id) {} constraint(tag_t t, unsigned id, literal l, unsigned sz, size_t osz):
m_tag(t), m_removed(false), m_lit(l), m_watch(null_literal), m_glue(0), m_psm(0), m_size(sz), m_obj_size(osz), m_learned(false), m_id(id) {}
ext_constraint_idx index() const { return reinterpret_cast<ext_constraint_idx>(this); } ext_constraint_idx index() const { return reinterpret_cast<ext_constraint_idx>(this); }
unsigned id() const { return m_id; } unsigned id() const { return m_id; }
tag_t tag() const { return m_tag; } tag_t tag() const { return m_tag; }
@ -87,6 +89,10 @@ namespace sat {
void set_psm(unsigned p) { m_psm = p; } void set_psm(unsigned p) { m_psm = p; }
void set_learned(bool f) { m_learned = f; } void set_learned(bool f) { m_learned = f; }
bool learned() const { return m_learned; } bool learned() const { return m_learned; }
bool is_watched() const { return m_watch == m_lit && m_lit != null_literal; }
void set_watch() { m_watch = m_lit; }
void clear_watch() { m_watch = null_literal; }
bool is_clear() const { return m_watch == null_literal && m_lit != null_literal; }
size_t obj_size() const { return m_obj_size; } size_t obj_size() const { return m_obj_size; }
card& to_card(); card& to_card();