mirror of
https://github.com/Z3Prover/z3
synced 2025-08-27 21:48:56 +00:00
147 lines
4.3 KiB
C++
147 lines
4.3 KiB
C++
/*++
|
|
Copyright (c) 2024 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
sls_euf_plugin.cpp
|
|
|
|
Abstract:
|
|
|
|
Congruence Closure for SLS
|
|
|
|
Author:
|
|
|
|
Nikolaj Bjorner (nbjorner) 2024-06-24
|
|
|
|
--*/
|
|
|
|
#include "ast/sls/sls_euf_plugin.h"
|
|
#include "ast/ast_ll_pp.h"
|
|
#include "ast/ast_pp.h"
|
|
|
|
|
|
namespace sls {
|
|
|
|
euf_plugin::euf_plugin(context& c):
|
|
plugin(c),
|
|
m_values(8U, value_hash(*this), value_eq(*this)) {
|
|
m_fid = m.mk_family_id("cc");
|
|
}
|
|
|
|
euf_plugin::~euf_plugin() {}
|
|
|
|
expr_ref euf_plugin::get_value(expr* e) {
|
|
UNREACHABLE();
|
|
return expr_ref(m);
|
|
}
|
|
|
|
void euf_plugin::register_term(expr* e) {
|
|
if (!is_app(e))
|
|
return;
|
|
if (!is_uninterp(e))
|
|
return;
|
|
app* a = to_app(e);
|
|
if (a->get_num_args() == 0)
|
|
return;
|
|
auto f = a->get_decl();
|
|
if (!m_app.contains(f))
|
|
m_app.insert(f, ptr_vector<app>());
|
|
m_app[f].push_back(a);
|
|
}
|
|
|
|
unsigned euf_plugin::value_hash::operator()(app* t) const {
|
|
unsigned r = 0;
|
|
for (auto arg : *t)
|
|
r *= 3, r += cc.ctx.get_value(arg)->hash();
|
|
return r;
|
|
}
|
|
|
|
bool euf_plugin::value_eq::operator()(app* a, app* b) const {
|
|
SASSERT(a->get_num_args() == b->get_num_args());
|
|
for (unsigned i = a->get_num_args(); i-- > 0; )
|
|
if (cc.ctx.get_value(a->get_arg(i)) != cc.ctx.get_value(b->get_arg(i)))
|
|
return false;
|
|
return true;
|
|
}
|
|
|
|
bool euf_plugin::is_sat() {
|
|
for (auto& [f, ts] : m_app) {
|
|
if (ts.size() <= 1)
|
|
continue;
|
|
m_values.reset();
|
|
for (auto* t : ts) {
|
|
app* u;
|
|
if (!ctx.is_relevant(t))
|
|
continue;
|
|
if (m_values.find(t, u)) {
|
|
if (ctx.get_value(t) != ctx.get_value(u))
|
|
return false;
|
|
}
|
|
else
|
|
m_values.insert(t);
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
bool euf_plugin::propagate() {
|
|
bool new_constraint = false;
|
|
for (auto & [f, ts] : m_app) {
|
|
if (ts.size() <= 1)
|
|
continue;
|
|
m_values.reset();
|
|
for (auto * t : ts) {
|
|
app* u;
|
|
if (!ctx.is_relevant(t))
|
|
continue;
|
|
if (m_values.find(t, u)) {
|
|
if (ctx.get_value(t) == ctx.get_value(u))
|
|
continue;
|
|
expr_ref_vector ors(m);
|
|
for (unsigned i = t->get_num_args(); i-- > 0; )
|
|
ors.push_back(m.mk_not(m.mk_eq(t->get_arg(i), u->get_arg(i))));
|
|
ors.push_back(m.mk_eq(t, u));
|
|
#if 0
|
|
verbose_stream() << "conflict: " << mk_bounded_pp(t, m) << " != " << mk_bounded_pp(u, m) << "\n";
|
|
verbose_stream() << "value " << ctx.get_value(t) << " != " << ctx.get_value(u) << "\n";
|
|
for (unsigned i = t->get_num_args(); i-- > 0; )
|
|
verbose_stream() << ctx.get_value(t->get_arg(i)) << " == " << ctx.get_value(u->get_arg(i)) << "\n";
|
|
#endif
|
|
ctx.add_constraint(m.mk_or(ors));
|
|
new_constraint = true;
|
|
}
|
|
else
|
|
m_values.insert(t);
|
|
}
|
|
}
|
|
return new_constraint;
|
|
}
|
|
|
|
std::ostream& euf_plugin::display(std::ostream& out) const {
|
|
for (auto& [f, ts] : m_app) {
|
|
for (auto* t : ts)
|
|
out << mk_bounded_pp(t, m) << "\n";
|
|
out << "\n";
|
|
}
|
|
return out;
|
|
}
|
|
|
|
void euf_plugin::mk_model(model& mdl) {
|
|
expr_ref_vector args(m);
|
|
for (auto& [f, ts] : m_app) {
|
|
func_interp* fi = alloc(func_interp, m, f->get_arity());
|
|
mdl.register_decl(f, fi);
|
|
m_values.reset();
|
|
for (auto* t : ts) {
|
|
if (m_values.contains(t))
|
|
continue;
|
|
args.reset();
|
|
expr_ref val = ctx.get_value(t);
|
|
for (auto arg : *t)
|
|
args.push_back(ctx.get_value(arg));
|
|
fi->insert_new_entry(args.data(), val);
|
|
m_values.insert(t);
|
|
}
|
|
}
|
|
}
|
|
}
|