Skip to content

Commit

Permalink
comment out erroneous debug code. fixme
Browse files Browse the repository at this point in the history
  • Loading branch information
TKussel committed Jun 11, 2021
1 parent e3b6fe9 commit d160a9d
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions include/circuit_builder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -380,9 +380,10 @@ class CircuitBuilder : public CircuitBuilderBase {
MultShare field_weight = delta_weight * comp;

#ifdef DEBUG_SEL_CIRCUIT
print_share(delta_weight, format("weight ({}){}", ftype, i));
print_share(comp, format("comp ({}){}", ftype, i));
print_share(field_weight, format("^^^^ field weight ({}){} ^^^^", ftype, i));
//FIXME(SS): Compilation error, if -DDEBUG_SEL_CIRCUIT
//print_share(delta_weight, format("weight ({}){}", ftype, i));
//print_share(comp, format("comp ({}){}", ftype, i));
//print_share(field_weight, format("^^^^ field weight ({}){} ^^^^", ftype, i));
#endif

return field_weight_cache[i] = {field_weight, delta_weight};
Expand Down

0 comments on commit d160a9d

Please sign in to comment.