update code/samples afer logtostderr change

This commit is contained in:
Laurent Perron
2023-02-28 10:55:11 +04:00
parent 5869f6165c
commit 7174cf026e
2 changed files with 4 additions and 4 deletions

View File

@@ -320,7 +320,7 @@ void StiglerDiet() {
int main(int argc, char** argv) {
InitGoogle(argv[0], &argc, &argv, true);
absl::SetFlag(&FLAGS_logtostderr, true);
absl::SetFlag(&FLAGS_stderrthreshold, 0);
operations_research::StiglerDiet();
return EXIT_SUCCESS;
}

View File

@@ -20,7 +20,7 @@
//
// solve --solver=scip \
// --time_limit=90s \
// --logtostderr \
// --stderrthreshold=0 \
// --linear_solver_enable_verbose_output \
// --input=/tmp/foo.mps \
// --dump_model=/tmp/foo.model \
@@ -33,7 +33,7 @@
//
// solve --solver=sat \
// --params="max_time_in_seconds:600, num_search_workers:8"
// --logtostderr \
// --stderrthreshold=0 \
// --input=/tmp/foo.mps \
// 2>/tmp/foo.err
//
@@ -42,7 +42,7 @@
// solve --solver=sat \
// --time_limit=10m \
// --num_threads=8 \
// --logtostderr \
// --stderrthreshold=0 \
// --input=/tmp/foo.mps \
// --dump_model=/tmp/foo.model \
// --dump_request=/tmp/foo.request \