mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 17:45:32 +00:00
Add getter for target and justification to enode
This commit is contained in:
parent
f61bf0843b
commit
1d3a31c323
1 changed files with 3 additions and 0 deletions
|
@ -211,6 +211,9 @@ namespace euf {
|
|||
bool children_are_roots() const;
|
||||
enode* get_next() const { return m_next; }
|
||||
|
||||
enode* get_target() const { return m_target; }
|
||||
justification get_justification() const { return m_justification; }
|
||||
|
||||
bool has_lbl_hash() const { return m_lbl_hash >= 0; }
|
||||
unsigned char get_lbl_hash() const {
|
||||
SASSERT(m_lbl_hash >= 0 && static_cast<unsigned>(m_lbl_hash) < approx_set_traits<unsigned long long>::capacity);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue