3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-07-24 13:18:55 +00:00

remove dead code

This commit is contained in:
Nikolaj Bjorner 2024-12-26 13:48:55 -08:00
parent d3a6521185
commit c58171478f
2 changed files with 0 additions and 14 deletions

View file

@ -81,18 +81,6 @@ namespace sls {
}
}
void bv_plugin::init_bool_var_assignment(sat::bool_var v) {
auto a = ctx.atom(v);
if (!a || !is_app(a))
return;
if (to_app(a)->get_family_id() != bv.get_family_id())
return;
bool is_true = m_eval.bval1(to_app(a));
if (is_true != ctx.is_true(v))
ctx.flip(v);
}
bool bv_plugin::is_sat() {
bool is_sat = true;
for (auto t : ctx.subterms())