![]() |
Google OR-Tools v9.14
a fast and portable software suite for combinatorial optimization
|
#include "ortools/sat/presolve_util.h"#include <algorithm>#include <array>#include <cstdint>#include <cstdlib>#include <limits>#include <string>#include <tuple>#include <utility>#include <vector>#include "absl/container/flat_hash_map.h"#include "absl/container/flat_hash_set.h"#include "absl/log/check.h"#include "absl/meta/type_traits.h"#include "absl/random/distributions.h"#include "absl/strings/str_cat.h"#include "absl/strings/str_format.h"#include "absl/strings/str_join.h"#include "absl/types/span.h"#include "ortools/base/strong_vector.h"#include "ortools/sat/cp_model.pb.h"#include "ortools/sat/cp_model_utils.h"#include "ortools/sat/util.h"#include "ortools/util/bitset.h"#include "ortools/util/logging.h"#include "ortools/util/saturated_arithmetic.h"#include "ortools/util/sorted_interval_list.h"#include "ortools/util/strong_integers.h"Go to the source code of this file.
Namespaces | |
| namespace | operations_research |
| In SWIG mode, we don't want anything besides these top-level includes. | |
| namespace | operations_research::sat |
Functions | |
| bool | operations_research::sat::AddLinearConstraintMultiple (int64_t factor, const ConstraintProto &to_add, ConstraintProto *to_modify) |
| bool | operations_research::sat::SubstituteVariable (int var, int64_t var_coeff_in_definition, const ConstraintProto &definition, ConstraintProto *ct) |
| bool | operations_research::sat::FindSingleLinearDifference (const LinearConstraintProto &lin1, const LinearConstraintProto &lin2, int *var1, int64_t *coeff1, int *var2, int64_t *coeff2) |
| Same as LinearsDifferAtOneTerm() below but also fills the differing terms. | |