Skip to content

Commit

Permalink
remove platform dependent print
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolajBjorner committed Dec 24, 2024
1 parent 4f4cafb commit 5541918
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/smt/smt_quantifier.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ namespace smt {
vector<std::tuple<enode *, enode *>> & used_enodes) {

if (pat == nullptr) {
trace_stream() << "[inst-discovered] MBQI " << static_cast<void*>(f) << " #" << q->get_id();
trace_stream() << "[inst-discovered] MBQI " << " #" << q->get_id();
for (unsigned i = 0; i < num_bindings; ++i) {
trace_stream() << " #" << bindings[num_bindings - i - 1]->get_owner_id();
}
Expand Down
2 changes: 1 addition & 1 deletion src/smt/smt_theory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ namespace smt {
symbol const & family_name = m.get_family_name(get_family_id());

if (pattern_id == UINT_MAX) {
out << "[inst-discovered] theory-solving " << static_cast<void *>(nullptr) << " " << family_name << "#";
out << "[inst-discovered] theory-solving " << " " << family_name << "#";
if (axiom_id != UINT_MAX)
out << axiom_id;
for (unsigned i = 0; i < num_bindings; ++i) {
Expand Down

0 comments on commit 5541918

Please sign in to comment.