mirror of
https://github.com/Z3Prover/z3
synced 2025-08-12 06:00:53 +00:00
expose import model converter over Python, document it, add partial order axioms for lex, disable linear order axioms, prepare ground for re-adding clauses from reconstruction stack
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
7ed5ca05e3
commit
41ca956012
11 changed files with 202 additions and 81 deletions
|
@ -120,6 +120,9 @@ namespace smt {
|
|||
}
|
||||
|
||||
literal theory::mk_eq(expr * a, expr * b, bool gate_ctx) {
|
||||
if (a == b) {
|
||||
return true_literal;
|
||||
}
|
||||
context & ctx = get_context();
|
||||
app * eq = ctx.mk_eq_atom(a, b);
|
||||
TRACE("mk_var_bug", tout << "mk_eq: " << eq->get_id() << " " << a->get_id() << " " << b->get_id() << "\n";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue