3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-07-29 07:27:57 +00:00

2 things I prevoiusly overlooked

This commit is contained in:
nilsbecker 2019-02-23 12:34:17 +01:00
parent 6ee3941523
commit c033fb045f
2 changed files with 3 additions and 2 deletions

View file

@ -1076,7 +1076,9 @@ public:
mk_axiom(mk_literal(lo));
if (m.has_trace_stream()) {
m.trace_stream() << "[end-of-instance]\n";
th.log_axiom_instantiation(m.mk_not(hi));
expr_ref body(m);
body = m.mk_not(hi);
th.log_axiom_instantiation(body);
}
mk_axiom(~mk_literal(hi));
if (m.has_trace_stream()) m.trace_stream() << "[end-of-instance]\n";