We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18c5821 commit 8afb450Copy full SHA for 8afb450
libsnark/gadgetlib1/protoboard.tcc
@@ -70,13 +70,9 @@ FieldT protoboard<FieldT>::val(const pb_variable<FieldT> &var) const
70
template<typename FieldT>
71
FieldT &protoboard<FieldT>::lc_val(const pb_linear_combination<FieldT> &lc)
72
{
73
- printf("[%s:%d] CHECKPOINT 1\n", __FILE__, __LINE__);
74
- // assert(lc.is_variable == false);
75
if (lc.is_variable == true) {
76
- printf("[%s:%d] CHECKPOINT 2\n", __FILE__, __LINE__);
77
return this->val(pb_variable<FieldT>(lc.index));
78
} else {
79
- printf("[%s:%d] CHECKPOINT 3\n", __FILE__, __LINE__);
80
assert(lc.index < lc_values.size());
81
return lc_values[lc.index];
82
}
0 commit comments