3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-29 17:38:45 +00:00

smt-like logging of theory specific meaning of constants

This commit is contained in:
nilsbecker 2018-12-10 22:49:08 +01:00
parent 0870760eb5
commit 6d2cf4f464
5 changed files with 115 additions and 26 deletions

View file

@ -95,7 +95,8 @@ app * fpa_decl_plugin::mk_numeral(mpf const & v) {
app * r = m_manager->mk_const(mk_numeral_decl(v));
if (log_constant_meaning_prelude(r)) {
m_manager->trace_stream() << "(" << m_fm.to_string(v) << ")\n";
m_fm.display_smt2(m_manager->trace_stream(), v, false);
m_manager->trace_stream() << "\n";
}
return r;