3
0
Fork 0
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:
Jakob Rath 2023-10-24 13:22:36 +02:00
parent be993485d0
commit 94659330e8

View file

@ -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;
};