Skip to content

Commit 7530004

Browse files
committed
Fixing printing
1 parent 6cd4e5f commit 7530004

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/stack.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -142,11 +142,11 @@ class StackLevel {
142142
inline void common_print(const FF& before) {
143143
cout << "now "
144144
<< ((act_branch) ? "right" : "left")
145-
<< " count is: " << val_or_zero(act_branch)
146-
<< " before it was: " << before
145+
<< " count is: " << *val_or_zero(act_branch)
146+
<< " before it was: " << *before
147147
<< " var: " << var
148148
<< " while " << ((!act_branch) ? "right" : "left")
149-
<< " count is: " << branch_mc[!act_branch]
149+
<< " count is: " << *val_or_zero(!act_branch)
150150
<< endl;
151151
}
152152

0 commit comments

Comments
 (0)