Skip to content

Commit 8afb450

Browse files
author
Vesselin Velichkov
committed
anemoi: removed debug comments from protoboard.tcc
1 parent 18c5821 commit 8afb450

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

libsnark/gadgetlib1/protoboard.tcc

-4
Original file line numberDiff line numberDiff line change
@@ -70,13 +70,9 @@ FieldT protoboard<FieldT>::val(const pb_variable<FieldT> &var) const
7070
template<typename FieldT>
7171
FieldT &protoboard<FieldT>::lc_val(const pb_linear_combination<FieldT> &lc)
7272
{
73-
printf("[%s:%d] CHECKPOINT 1\n", __FILE__, __LINE__);
74-
// assert(lc.is_variable == false);
7573
if (lc.is_variable == true) {
76-
printf("[%s:%d] CHECKPOINT 2\n", __FILE__, __LINE__);
7774
return this->val(pb_variable<FieldT>(lc.index));
7875
} else {
79-
printf("[%s:%d] CHECKPOINT 3\n", __FILE__, __LINE__);
8076
assert(lc.index < lc_values.size());
8177
return lc_values[lc.index];
8278
}

0 commit comments

Comments
 (0)