mirror of
https://github.com/Z3Prover/z3
synced 2025-04-28 03:15:50 +00:00
more cleanup
This commit is contained in:
parent
a8586746be
commit
6ee3941523
17 changed files with 328 additions and 104 deletions
|
@ -256,7 +256,11 @@ namespace smt {
|
|||
lt = u().mk_lt(x,y);
|
||||
le = b().mk_ule(m().mk_app(r,y),m().mk_app(r,x));
|
||||
context& ctx = get_context();
|
||||
if (m().has_trace_stream()) log_axiom_instantiation(m().mk_eq(lt, le));
|
||||
if (m().has_trace_stream()) {
|
||||
app_ref body(m());
|
||||
body = m().mk_eq(lt, le);
|
||||
log_axiom_instantiation(body);
|
||||
}
|
||||
ctx.internalize(lt, false);
|
||||
ctx.internalize(le, false);
|
||||
literal lit1(ctx.get_literal(lt));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue