mirror of
https://github.com/Z3Prover/z3
synced 2025-04-22 16:45:31 +00:00
assertion seems fine now
This commit is contained in:
parent
be993485d0
commit
94659330e8
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@ namespace polysat {
|
|||
bool is_propagation_by_viable() const { return m_kind == justification_k::propagation_by_viable; }
|
||||
bool is_propagation_by_slicing() const { return m_kind == justification_k::propagation_by_slicing; }
|
||||
justification_k kind() const { return m_kind; }
|
||||
unsigned level() const { /* SASSERT(!is_unassigned()); */ return m_level; } // TODO: check why this assertion triggers...
|
||||
unsigned level() const { SASSERT(!is_unassigned()); return m_level; }
|
||||
std::ostream& display(std::ostream& out) const;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue