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

remove some platform specific behavior

This commit is contained in:
Nikolaj Bjorner 2024-12-23 16:28:10 -08:00
parent 554191885e
commit 23c4728d68
5 changed files with 7 additions and 8 deletions

View file

@ -188,8 +188,7 @@ namespace smt {
void qi_queue::display_instance_profile(fingerprint * f, quantifier * q, unsigned num_bindings, enode * const * bindings, unsigned proof_id, unsigned generation) {
if (m.has_trace_stream()) {
m.trace_stream() << "[instance] ";
m.trace_stream() << static_cast<void*>(f);
m.trace_stream() << "[instance] 0x0";
if (m.proofs_enabled())
m.trace_stream() << " #" << proof_id;
m.trace_stream() << " ; " << generation;

View file

@ -240,7 +240,7 @@ namespace smt {
vector<std::tuple<enode *, enode *>> & used_enodes) {
if (pat == nullptr) {
trace_stream() << "[inst-discovered] MBQI " << " #" << q->get_id();
trace_stream() << "[inst-discovered] MBQI 0x0 #" << q->get_id();
for (unsigned i = 0; i < num_bindings; ++i) {
trace_stream() << " #" << bindings[num_bindings - i - 1]->get_owner_id();
}

View file

@ -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 " << " " << family_name << "#";
out << "[inst-discovered] theory-solving 0x0 " << family_name << "#";
if (axiom_id != UINT_MAX)
out << axiom_id;
for (unsigned i = 0; i < num_bindings; ++i) {