From d160a9d67d0917bc8bbdd111e4d0d8a2e18ee37f Mon Sep 17 00:00:00 2001 From: Tobias Kussel Date: Fri, 11 Jun 2021 15:29:38 +0200 Subject: [PATCH] comment out erroneous debug code. fixme --- include/circuit_builder.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/include/circuit_builder.cpp b/include/circuit_builder.cpp index b53e41c..a95c647 100644 --- a/include/circuit_builder.cpp +++ b/include/circuit_builder.cpp @@ -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};