![]() |
Google OR-Tools v9.15
a fast and portable software suite for combinatorial optimization
|
#include "ortools/sat/cp_model_solver_helpers.h"#include <algorithm>#include <array>#include <cmath>#include <cstdint>#include <cstdlib>#include <memory>#include <string>#include <thread>#include <tuple>#include <utility>#include <vector>#include "ortools/base/logging.h"#include "ortools/base/timer.h"#include "ortools/sat/lrat_proof_handler.h"#include "ortools/base/helpers.h"#include "ortools/base/options.h"#include "absl/algorithm/container.h"#include "absl/cleanup/cleanup.h"#include "absl/container/flat_hash_set.h"#include "absl/flags/flag.h"#include "absl/log/check.h"#include "absl/log/log.h"#include "absl/log/vlog_is_on.h"#include "absl/strings/escaping.h"#include "absl/strings/str_cat.h"#include "absl/strings/string_view.h"#include "absl/types/span.h"#include "google/protobuf/arena.h"#include "ortools/algorithms/sparse_permutation.h"#include "ortools/base/strong_vector.h"#include "ortools/graph/connected_components.h"#include "ortools/port/proto_utils.h"#include "ortools/sat/clause.h"#include "ortools/sat/cp_model.pb.h"#include "ortools/sat/cp_model_checker.h"#include "ortools/sat/cp_model_loader.h"#include "ortools/sat/cp_model_mapping.h"#include "ortools/sat/cp_model_postsolve.h"#include "ortools/sat/cp_model_search.h"#include "ortools/sat/cp_model_solver_logging.h"#include "ortools/sat/cp_model_utils.h"#include "ortools/sat/cuts.h"#include "ortools/sat/feasibility_pump.h"#include "ortools/sat/implied_bounds.h"#include "ortools/sat/integer.h"#include "ortools/sat/integer_base.h"#include "ortools/sat/integer_expr.h"#include "ortools/sat/integer_resolution.h"#include "ortools/sat/integer_search.h"#include "ortools/sat/intervals.h"#include "ortools/sat/lb_tree_search.h"#include "ortools/sat/linear_constraint.h"#include "ortools/sat/linear_constraint_manager.h"#include "ortools/sat/linear_programming_constraint.h"#include "ortools/sat/linear_relaxation.h"#include "ortools/sat/max_hs.h"#include "ortools/sat/model.h"#include "ortools/sat/optimization.h"#include "ortools/sat/precedences.h"#include "ortools/sat/probing.h"#include "ortools/sat/sat_base.h"#include "ortools/sat/sat_parameters.pb.h"#include "ortools/sat/sat_solver.h"#include "ortools/sat/stat_tables.h"#include "ortools/sat/symmetry_util.h"#include "ortools/sat/synchronization.h"#include "ortools/sat/util.h"#include "ortools/sat/vivification.h"#include "ortools/sat/work_assignment.h"#include "ortools/util/logging.h"#include "ortools/base/version.h"#include "ortools/util/sorted_interval_list.h"#include "ortools/util/strong_integers.h"#include "ortools/util/time_limit.h"Go to the source code of this file.
Namespaces | |
| namespace | operations_research |
| OR-Tools root namespace. | |
| namespace | operations_research::sat |