mirror of
https://github.com/Z3Prover/z3
synced 2025-08-24 03:57:51 +00:00
virtual_solver: debug print
This commit is contained in:
parent
891dcd99c2
commit
56bce005a0
1 changed files with 8 additions and 3 deletions
|
@ -150,7 +150,6 @@ lbool virtual_solver::check_sat_core(unsigned num_assumptions,
|
||||||
st.update("time", sw.get_seconds());
|
st.update("time", sw.get_seconds());
|
||||||
st.display_smt2(out);
|
st.display_smt2(out);
|
||||||
|
|
||||||
out.close();
|
|
||||||
|
|
||||||
if (m_factory.fparams().m_dump_recheck) {
|
if (m_factory.fparams().m_dump_recheck) {
|
||||||
scoped_no_proof _no_proof_(m);
|
scoped_no_proof _no_proof_(m);
|
||||||
|
@ -164,7 +163,13 @@ lbool virtual_solver::check_sat_core(unsigned num_assumptions,
|
||||||
sw2.stop();
|
sw2.stop();
|
||||||
verbose_stream() << file_name.str() << " :orig "
|
verbose_stream() << file_name.str() << " :orig "
|
||||||
<< sw.get_seconds() << " :new " << sw2.get_seconds();
|
<< sw.get_seconds() << " :new " << sw2.get_seconds();
|
||||||
|
|
||||||
|
out << ";; :orig " << sw.get_seconds()
|
||||||
|
<< " :new " << sw2.get_seconds() << "\n"
|
||||||
|
<< ";; :new is time to solve with fresh smt::kernel\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
out.close();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue