3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 09:05:31 +00:00

Remove verbose logging in register_term function of sls_basic_plugin and fix formatting in sls_context

This commit is contained in:
Nikolaj Bjorner 2024-08-30 11:58:50 -07:00
parent 7be2c3ae1e
commit d0da02695c
2 changed files with 1 additions and 2 deletions

View file

@ -43,7 +43,6 @@ namespace sls {
void basic_plugin::register_term(expr* e) {
expr* c, * th, * el;
verbose_stream() << "register term " << mk_bounded_pp(e, m) << "\n";
if (m.is_ite(e, c, th, el) && !m.is_bool(e)) {
ctx.add_clause(m.mk_or(mk_not(m, c), m.mk_eq(e, th)));
ctx.add_clause(m.mk_or(c, m.mk_eq(e, el)));

View file

@ -102,7 +102,7 @@ namespace sls {
}
return l_undef;
}
void context::propagate_boolean_assignment() {
reinit_relevant();