![]() |
Google OR-Tools v9.15
a fast and portable software suite for combinatorial optimization
|
#include "ortools/sat/boolean_problem.h"#include <algorithm>#include <cstdint>#include <cstdlib>#include <limits>#include <memory>#include <numeric>#include <string>#include <utility>#include <vector>#include "absl/container/flat_hash_map.h"#include "absl/flags/flag.h"#include "absl/log/check.h"#include "absl/status/status.h"#include "absl/strings/str_format.h"#include "absl/strings/string_view.h"#include "absl/types/span.h"#include "ortools/base/logging.h"#include "ortools/graph/graph.h"#include "ortools/graph/graph_io.h"#include "ortools/algorithms/find_graph_symmetries.h"#include "ortools/algorithms/sparse_permutation.h"#include "ortools/base/strong_vector.h"#include "ortools/graph/util.h"#include "ortools/port/proto_utils.h"#include "ortools/sat/boolean_problem.pb.h"#include "ortools/sat/cp_model.pb.h"#include "ortools/sat/pb_constraint.h"#include "ortools/sat/sat_base.h"#include "ortools/sat/sat_parameters.pb.h"#include "ortools/sat/sat_solver.h"#include "ortools/sat/simplification.h"#include "ortools/util/strong_integers.h"Go to the source code of this file.
Namespaces | |
| namespace | operations_research |
| OR-Tools root namespace. | |
| namespace | operations_research::sat |
| ABSL_FLAG | ( | std::string | , |
| debug_dump_symmetry_graph_to_file | , | ||
| "" | , | ||
| "If this flag is non- | empty, | ||
| an undirected graph whose" " automorphism group is in one-to-one correspondence with the" " symmetries of the SAT problem will be dumped to a file every" " time FindLinearBooleanProblemSymmetries() is called." | ) |