Skip to content

Commit 123aeed

Browse files
committed
Fixing weight printing
1 parent d6d11cc commit 123aeed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/counter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4167,7 +4167,7 @@ void Counter::set_lit_weight(Lit l, const FF& w) {
41674167
" you can give '--allindep 1', and then you can give weights to anything." << endl;
41684168
exit(-1);
41694169
}
4170-
verb_print(2, "Setting weight of " << l << " to " << w);
4170+
verb_print(2, "Setting weight of " << l << " to " << *w);
41714171
*weights[l.raw()] = *w;
41724172
var_weights[l.var()] = weights[l.raw()]->dup();
41734173
*var_weights[l.var()] += *weights[l.neg().raw()];

0 commit comments

Comments
 (0)