3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 01:25:31 +00:00

lvl -> _lvl

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2019-01-12 00:40:36 -08:00
parent 0b8dbf2854
commit 3c96b51e97

View file

@ -761,7 +761,7 @@ namespace sat {
void solver::assign_core(literal l, unsigned _lvl, justification j) {
SASSERT(value(l) == l_undef);
TRACE("sat_assign_core", tout << l << " " << j << " level: " << lvl << "\n";);
TRACE("sat_assign_core", tout << l << " " << j << " level: " << _lvl << "\n";);
if (_lvl == 0 && m_config.m_drat) {
m_drat.add(l, !j.is_none());
}