mirror of
https://github.com/Z3Prover/z3
synced 2025-07-24 05:08:55 +00:00
fixes to clause proof tracking
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
f7d015de8d
commit
0c2e3c0894
5 changed files with 19 additions and 37 deletions
|
@ -96,7 +96,7 @@ namespace smt {
|
|||
};
|
||||
tp_elem(literal l):m_kind(LITERAL), m_lidx(l.index()) {}
|
||||
tp_elem(enode * lhs, enode * rhs):m_kind(EQUALITY), m_lhs(lhs), m_rhs(rhs) {}
|
||||
tp_elem(justification * js):m_kind(JUSTIFICATION), m_js(js) {}
|
||||
tp_elem(justification * js):m_kind(JUSTIFICATION), m_js(js) { SASSERT(js);}
|
||||
};
|
||||
|
||||
svector<tp_elem> m_todo_pr;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue