mirror of
https://github.com/Z3Prover/z3
synced 2025-06-06 06:03:23 +00:00
fix debug build
Signed-off-by: Nuno Lopes <a-nlopes@microsoft.com>
This commit is contained in:
parent
37fca65517
commit
6ab167f0c7
4 changed files with 5 additions and 5 deletions
|
@ -1355,7 +1355,7 @@ namespace datalog {
|
||||||
|
|
||||||
acc.set_observer(0);
|
acc.set_observer(0);
|
||||||
|
|
||||||
TRACE("dl", execution_code.display(*m_context.get_rel_context(), tout););
|
TRACE("dl", execution_code.display(execution_context(m_context), tout););
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1148,7 +1148,7 @@ namespace datalog {
|
||||||
|
|
||||||
TRACE("dl",
|
TRACE("dl",
|
||||||
tout <<"% ";
|
tout <<"% ";
|
||||||
instr->display_head_impl(ctx.get_rel_context(), tout);
|
instr->display_head_impl(ctx, tout);
|
||||||
tout <<"\n";);
|
tout <<"\n";);
|
||||||
success = !ctx.should_terminate() && instr->perform(ctx);
|
success = !ctx.should_terminate() && instr->perform(ctx);
|
||||||
}
|
}
|
||||||
|
|
|
@ -172,7 +172,7 @@ namespace datalog {
|
||||||
|
|
||||||
compiler::compile(m_context, m_context.get_rules(), m_code, termination_code);
|
compiler::compile(m_context, m_context.get_rules(), m_code, termination_code);
|
||||||
|
|
||||||
TRACE("dl", m_code.display(*this, tout); );
|
TRACE("dl", m_code.display(m_ectx, tout); );
|
||||||
|
|
||||||
bool timeout_after_this_round = time_limit && (restart_time==0 || remaining_time_limit<=restart_time);
|
bool timeout_after_this_round = time_limit && (restart_time==0 || remaining_time_limit<=restart_time);
|
||||||
|
|
||||||
|
|
|
@ -190,7 +190,7 @@ unsigned read_datalog(char const * file) {
|
||||||
|
|
||||||
datalog::compiler::compile(ctx, ctx.get_rules(), rules_code, termination_code);
|
datalog::compiler::compile(ctx, ctx.get_rules(), rules_code, termination_code);
|
||||||
|
|
||||||
TRACE("dl_compiler", rules_code.display(*ctx.get_rel_context(), tout););
|
TRACE("dl_compiler", rules_code.display(ex_ctx, tout););
|
||||||
|
|
||||||
rules_code.make_annotations(ex_ctx);
|
rules_code.make_annotations(ex_ctx);
|
||||||
|
|
||||||
|
@ -230,7 +230,7 @@ unsigned read_datalog(char const * file) {
|
||||||
|
|
||||||
|
|
||||||
TRACE("dl_compiler", ctx.display(tout);
|
TRACE("dl_compiler", ctx.display(tout);
|
||||||
rules_code.display(*ctx.get_rel_context(), tout););
|
rules_code.display(ex_ctx, tout););
|
||||||
|
|
||||||
if (ctx.output_tuples()) {
|
if (ctx.output_tuples()) {
|
||||||
ctx.get_rel_context()->display_output_facts(ctx.get_rules(), std::cout);
|
ctx.get_rel_context()->display_output_facts(ctx.get_rules(), std::cout);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue