23#ifndef OR_TOOLS_SAT_INTEGER_SEARCH_H_
24#define OR_TOOLS_SAT_INTEGER_SEARCH_H_
31#include "absl/container/flat_hash_set.h"
32#include "absl/types/span.h"
34#include "ortools/sat/cp_model.pb.h"
44#include "ortools/sat/sat_parameters.pb.h"
131 const std::vector<Literal>& assumptions,
Model* model);
177 absl::Span<const IntegerVariable> vars,
Model* model);
194 absl::Span<const IntegerVariable> vars,
Model* model);
206 absl::Span<const BooleanOrIntegerVariable> vars,
207 absl::Span<const IntegerValue> values,
Model* model);
222 value_selection_heuristics,
270 incomplete_heuristics,
287 LiteralIndex* decision);
296 must_process_conflict_ =
true;
316 const SatParameters& parameters_;
328 bool must_process_conflict_ =
false;
348 static const int kTestLimitPeriod = 20;
349 static const int kLogPeriod = 1000;
350 static const int kSyncPeriod = 50;
354 void LogStatistics();
358 std::vector<BooleanVariable> bool_vars_;
359 std::vector<IntegerVariable> int_vars_;
371 const SatParameters parameters_;
379 int64_t num_literals_probed_ = 0;
380 int64_t num_bounds_shaved_ = 0;
381 int64_t num_bounds_tried_ = 0;
382 int64_t num_at_least_one_probed_ = 0;
383 int64_t num_at_most_one_probed_ = 0;
386 int num_logs_remaining_ = 0;
387 int num_syncs_remaining_ = 0;
388 int num_test_limit_remaining_ = 0;
391 bool use_shaving_ =
false;
392 int trail_index_at_start_of_iteration_ = 0;
393 int integer_trail_index_at_start_of_iteration_ = 0;
396 double active_limit_;
398 absl::flat_hash_set<BooleanVariable> probed_bool_vars_;
399 absl::flat_hash_set<LiteralIndex> shaved_literals_;
401 int current_int_var_ = 0;
402 int current_bool_var_ = 0;
403 int current_bv1_ = 0;
404 int current_bv2_ = 0;
405 int random_pair_of_bool_vars_probed_ = 0;
406 int random_triplet_of_bool_vars_probed_ = 0;
407 std::vector<std::vector<Literal>> tmp_dnf_;
408 std::vector<Literal> tmp_literals_;
SatSolver::Status Probe()
ContinuousProber(const CpModelProto &model_proto, Model *model)
The model_proto is just used to construct the lists of variable to probe.
IntegerSearchHelper(Model *model)
bool TakeDecision(Literal decision)
LiteralIndex GetDecisionLiteral(const BooleanOrIntegerLiteral &decision)
bool GetDecision(const std::function< BooleanOrIntegerLiteral()> &f, LiteralIndex *decision)
bool BeforeTakingDecision()
void NotifyThatConflictWasFoundDuringGetDecision()
SatSolver::Status SolveIntegerProblem()
void ConfigureSearchHeuristics(Model *model)
std::function< BooleanOrIntegerLiteral()> FirstUnassignedVarAtItsMinHeuristic(absl::Span< const IntegerVariable > vars, Model *model)
const LiteralIndex kNoLiteralIndex(-1)
std::function< BooleanOrIntegerLiteral()> DisjunctivePrecedenceSearchHeuristic(Model *model)
std::vector< std::function< BooleanOrIntegerLiteral()> > CompleteHeuristics(absl::Span< const std::function< BooleanOrIntegerLiteral()> > incomplete_heuristics, const std::function< BooleanOrIntegerLiteral()> &completion_heuristic)
std::function< BooleanOrIntegerLiteral()> BoolPseudoCostHeuristic(Model *model)
std::function< BooleanOrIntegerLiteral()> SequentialValueSelection(std::vector< std::function< IntegerLiteral(IntegerVariable)> > value_selection_heuristics, std::function< BooleanOrIntegerLiteral()> var_selection_heuristic, Model *model)
std::function< BooleanOrIntegerLiteral()> IntegerValueSelectionHeuristic(std::function< BooleanOrIntegerLiteral()> var_selection_heuristic, Model *model)
IntegerLiteral SplitAroundLpValue(IntegerVariable var, Model *model)
const IntegerVariable kNoIntegerVariable(-1)
std::function< BooleanOrIntegerLiteral()> UnassignedVarWithLowestMinAtItsMinHeuristic(absl::Span< const IntegerVariable > vars, Model *model)
IntegerLiteral ChooseBestObjectiveValue(IntegerVariable var, IntegerTrail *integer_trail, ObjectiveDefinition *objective_definition)
If a variable appear in the objective, branch on its best objective value.
IntegerLiteral AtMinValue(IntegerVariable var, IntegerTrail *integer_trail)
SatSolver::Status SolveIntegerProblemWithLazyEncoding(Model *model)
std::function< BooleanOrIntegerLiteral()> PseudoCost(Model *model)
std::function< BooleanOrIntegerLiteral()> SchedulingSearchHeuristic(Model *model)
A simple heuristic for scheduling models.
IntegerLiteral SplitDomainUsingBestSolutionValue(IntegerVariable var, Model *model)
std::function< BooleanOrIntegerLiteral()> SatSolverHeuristic(Model *model)
Returns the BooleanOrIntegerLiteral advised by the underlying SAT solver.
std::function< bool()> RestartEveryKFailures(int k, SatSolver *solver)
A restart policy that restarts every k failures.
std::function< BooleanOrIntegerLiteral()> FollowHint(absl::Span< const BooleanOrIntegerVariable > vars, absl::Span< const IntegerValue > values, Model *model)
bool LinearizedPartIsLarge(Model *model)
IntegerLiteral SplitAroundGivenValue(IntegerVariable var, IntegerValue value, Model *model)
const BooleanVariable kNoBooleanVariable(-1)
SatSolver::Status ResetAndSolveIntegerProblem(const std::vector< Literal > &assumptions, Model *model)
std::function< bool()> SatSolverRestartPolicy(Model *model)
A restart policy that uses the underlying sat solver's policy.
std::function< BooleanOrIntegerLiteral()> LpPseudoCostHeuristic(Model *model)
IntegerLiteral GreaterOrEqualToMiddleValue(IntegerVariable var, IntegerTrail *integer_trail)
std::function< BooleanOrIntegerLiteral()> MostFractionalHeuristic(Model *model)
Choose the variable with most fractional LP value.
std::function< BooleanOrIntegerLiteral()> CumulativePrecedenceSearchHeuristic(Model *model)
std::function< BooleanOrIntegerLiteral()> SequentialSearch(std::vector< std::function< BooleanOrIntegerLiteral()> > heuristics)
In SWIG mode, we don't want anything besides these top-level includes.
LiteralIndex boolean_literal_index
BooleanOrIntegerLiteral(LiteralIndex index)
BooleanOrIntegerLiteral()=default
IntegerLiteral integer_literal
BooleanOrIntegerLiteral(IntegerLiteral i_lit)
std::vector< std::function< bool()> > callbacks
std::function< BooleanOrIntegerLiteral()> fixed_search
Fixed search, built from above building blocks.
std::function< BooleanOrIntegerLiteral()> heuristic_search
std::vector< std::function< bool()> > restart_policies
std::function< BooleanOrIntegerLiteral()> user_search
Contains the search specified by the user in CpModelProto.
std::vector< std::function< BooleanOrIntegerLiteral()> > decision_policies
std::function< BooleanOrIntegerLiteral()> hint_search
std::function< BooleanOrIntegerLiteral()> next_decision_override
std::function< BooleanOrIntegerLiteral()> integer_completion_search
Default integer heuristic that will fix all integer variables.
int policy_index
Index in the vectors above that indicate the current configuration.