This commit is contained in:
Laurent Perron
2025-04-25 19:02:47 +02:00
parent 81fb31ea54
commit 942677d288

View File

@@ -35,7 +35,6 @@
#include "absl/strings/str_split.h"
#include "absl/strings/string_view.h"
#include "absl/time/time.h"
#include "ortools/base/commandlineflags.h"
#include "ortools/base/logging.h"
#include "ortools/base/path.h"
#include "ortools/base/timer.h"
@@ -50,7 +49,7 @@ ABSL_FLAG(double, time_limit, 0, "time limit in seconds.");
ABSL_FLAG(bool, search_all_solutions, false, "Search for all solutions.");
ABSL_FLAG(bool, display_all_solutions, false,
"Display all improving solutions.");
ABSL_FLAG(bool, free_search, false,
ABSL_FLAG(bool, free_search, !kOrToolsMode,
"If false, the solver must follow the defined search."
"If true, other search are allowed.");
ABSL_FLAG(int, threads, 0, "Number of threads the solver will use.");