Skip to content

Commit bae3880

Browse files
authored
Merge pull request #2 from TKussel/matching
Expose N:M Matching Endpoint
2 parents 49166ee + d160a9d commit bae3880

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

include/circuit_builder.cpp

+4-3
Original file line numberDiff line numberDiff line change
@@ -380,9 +380,10 @@ class CircuitBuilder : public CircuitBuilderBase {
380380
MultShare field_weight = delta_weight * comp;
381381

382382
#ifdef DEBUG_SEL_CIRCUIT
383-
print_share(delta_weight, format("weight ({}){}", ftype, i));
384-
print_share(comp, format("comp ({}){}", ftype, i));
385-
print_share(field_weight, format("^^^^ field weight ({}){} ^^^^", ftype, i));
383+
//FIXME(SS): Compilation error, if -DDEBUG_SEL_CIRCUIT
384+
//print_share(delta_weight, format("weight ({}){}", ftype, i));
385+
//print_share(comp, format("comp ({}){}", ftype, i));
386+
//print_share(field_weight, format("^^^^ field weight ({}){} ^^^^", ftype, i));
386387
#endif
387388

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

include/epilink_input.h

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
#include <vector>
2727
#include <map>
2828
#include <cstdint>
29+
#include <optional>
2930

3031
namespace sel {
3132

sepilinker.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ int main(int argc, char* argv[]) {
195195
sel::valid_matchrecord_json_handler, sel::invalid_json_handler);
196196
auto matchrecords_methodhandler =
197197
sel::MethodHandler::create_methodhandler<sel::JsonMethodHandler>(
198-
"POST", linkrecord_validator,
198+
"POST", null_validator,
199199
sel::valid_matchrecords_json_handler, sel::invalid_json_handler);
200200
#endif
201201
// Create GET-Handler for job status monitoring
@@ -273,6 +273,7 @@ int main(int argc, char* argv[]) {
273273
linkrecords_handler.publish(service);
274274
#ifdef SEL_MATCHING_MODE
275275
matchrecord_handler.publish(service);
276+
matchrecords_handler.publish(service);
276277
#endif
277278
jobmonitor_handler.publish(service);
278279
test_config_handler.publish(service);

0 commit comments

Comments
 (0)