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:
parent
7be2c3ae1e
commit
d0da02695c
2 changed files with 1 additions and 2 deletions
|
@ -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)));
|
||||
|
|
|
@ -102,7 +102,7 @@ namespace sls {
|
|||
}
|
||||
return l_undef;
|
||||
}
|
||||
|
||||
|
||||
void context::propagate_boolean_assignment() {
|
||||
reinit_relevant();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue