algorithms: google3 sync

This commit is contained in:
Corentin Le Molgat
2023-10-20 13:55:49 +02:00
parent 8d036ee0d7
commit 06738a693d
2 changed files with 3 additions and 3 deletions

View File

@@ -231,9 +231,11 @@ cc_test(
srcs = ["find_graph_symmetries_test.cc"],
#copts = ["-Iexternal/gtest/include"],
deps = [
":dynamic_partition",
":dynamic_permutation",
":find_graph_symmetries",
":sparse_permutation",
"//ortools/base",
"//ortools/base:file",
"//ortools/base:dump_vars",
"//ortools/base:map_util",
"//ortools/base:path",

View File

@@ -43,13 +43,11 @@
#include "ortools/algorithms/dynamic_permutation.h"
#include "ortools/algorithms/sparse_permutation.h"
#include "ortools/base/dump_vars.h"
#include "ortools/base/file.h"
#include "ortools/base/helpers.h"
#include "ortools/base/map_util.h"
#include "ortools/base/path.h"
#include "ortools/graph/io.h"
#include "ortools/graph/util.h"
#include "ortools/util/filelineiter.h"
namespace operations_research {
namespace {