Skip to content

Commit

Permalink
remove verbose output
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
  • Loading branch information
NikolajBjorner committed Feb 16, 2025
1 parent 50f9fdd commit fe27ca1
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/qe/mbp/mbp_euf.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,6 @@ namespace mbp {
m_parents.insert_if_not_there(arg, {}).push_back(t);
}
}
for (auto [key, value] : m_reps)
verbose_stream() << mk_pp(key, m) << " -> " << mk_pp(value, m) << "\n";
unsigned j = 0;
bool solved = false;
for (app* v : vars) {
Expand Down Expand Up @@ -204,7 +202,6 @@ namespace mbp {
for (auto e : partition) {
if (a == e)
continue;
verbose_stream() << "Unify " << mk_pp(a, m) << " with " << mk_pp(e, m) << "\n";
if (!same_decl(a, e))
continue;
app* b = to_app(e);
Expand Down

0 comments on commit fe27ca1

Please sign in to comment.