00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #include "graph/linear_assignment.h"
00015
00016 #include "base/commandlineflags.h"
00017
00018 DEFINE_int64(assignment_alpha, 5,
00019 "Divisor for epsilon at each Refine "
00020 "step of LinearSumAssignment.");
00021 DEFINE_int32(assignment_progress_logging_period, 5000,
00022 "Number of relabelings to do between logging progress messages "
00023 "when verbose level is 4 or more.");
00024 DEFINE_bool(assignment_stack_order, true,
00025 "Process active nodes in stack (as opposed to queue) order.");