|
| | DemonProfiler (Solver *const solver) |
| | ~DemonProfiler () override |
| int64_t | CurrentTime () const |
| void | BeginConstraintInitialPropagation (Constraint *const constraint) override |
| | Propagation events.
|
| void | EndConstraintInitialPropagation (Constraint *const constraint) override |
| void | BeginNestedConstraintInitialPropagation (Constraint *const constraint, Constraint *const delayed) override |
| void | EndNestedConstraintInitialPropagation (Constraint *const constraint, Constraint *const delayed) override |
| void | RegisterDemon (Demon *const demon) override |
| void | BeginDemonRun (Demon *const demon) override |
| void | EndDemonRun (Demon *const demon) override |
| void | StartProcessingIntegerVariable (IntVar *const var) override |
| void | EndProcessingIntegerVariable (IntVar *const var) override |
| void | PushContext (const std::string &context) override |
| void | PopContext () override |
| void | BeginFail () override |
| | Just when the failure occurs.
|
| void | RestartSearch () override |
| | Restart the search.
|
| void | SetMin (IntExpr *const expr, int64_t new_min) override |
| | IntExpr modifiers.
|
| void | SetMax (IntExpr *const expr, int64_t new_max) override |
| void | SetRange (IntExpr *const expr, int64_t new_min, int64_t new_max) override |
| void | SetMin (IntVar *const var, int64_t new_min) override |
| | IntVar modifiers.
|
| void | SetMax (IntVar *const var, int64_t new_max) override |
| void | SetRange (IntVar *const var, int64_t new_min, int64_t new_max) override |
| void | RemoveValue (IntVar *const var, int64_t value) override |
| void | SetValue (IntVar *const var, int64_t value) override |
| void | RemoveInterval (IntVar *const var, int64_t imin, int64_t imax) override |
| void | SetValues (IntVar *const var, const std::vector< int64_t > &values) override |
| void | RemoveValues (IntVar *const var, const std::vector< int64_t > &values) override |
| void | SetStartMin (IntervalVar *const var, int64_t new_min) override |
| | IntervalVar modifiers.
|
| void | SetStartMax (IntervalVar *const var, int64_t new_max) override |
| void | SetStartRange (IntervalVar *const var, int64_t new_min, int64_t new_max) override |
| void | SetEndMin (IntervalVar *const var, int64_t new_min) override |
| void | SetEndMax (IntervalVar *const var, int64_t new_max) override |
| void | SetEndRange (IntervalVar *const var, int64_t new_min, int64_t new_max) override |
| void | SetDurationMin (IntervalVar *const var, int64_t new_min) override |
| void | SetDurationMax (IntervalVar *const var, int64_t new_max) override |
| void | SetDurationRange (IntervalVar *const var, int64_t new_min, int64_t new_max) override |
| void | SetPerformed (IntervalVar *const var, bool value) override |
| void | RankFirst (SequenceVar *const var, int index) override |
| | SequenceVar modifiers.
|
| void | RankNotFirst (SequenceVar *const var, int index) override |
| void | RankLast (SequenceVar *const var, int index) override |
| void | RankNotLast (SequenceVar *const var, int index) override |
| void | RankSequence (SequenceVar *const var, const std::vector< int > &rank_first, const std::vector< int > &rank_last, const std::vector< int > &unperformed) override |
| void | AddFakeRun (Demon *const demon, int64_t start_time, int64_t end_time, bool is_fail) |
| void | PrintOverview (Solver *const solver, absl::string_view filename) |
| void | ExportInformation (const Constraint *const constraint, int64_t *const fails, int64_t *const initial_propagation_runtime, int64_t *const demon_invocations, int64_t *const total_demon_runtime, int *demons) |
| void | ExportInformation (const DemonRuns *const demon_runs, int64_t *const demon_invocations, int64_t *const fails, int64_t *const total_demon_runtime, double *const mean_demon_runtime, double *const median_demon_runtime, double *const stddev_demon_runtime) |
| void | Install () override |
| std::string | DebugString () const override |
| Public Member Functions inherited from operations_research::PropagationMonitor |
| | PropagationMonitor (Solver *solver) |
| | ~PropagationMonitor () override |
| std::string | DebugString () const override |
| void | Install () override |
| | Install itself on the solver.
|
| Public Member Functions inherited from operations_research::SearchMonitor |
| | SearchMonitor (Solver *const s) |
| | SearchMonitor (const SearchMonitor &)=delete |
| SearchMonitor & | operator= (const SearchMonitor &)=delete |
| | ~SearchMonitor () override |
| virtual void | EnterSearch () |
| | Beginning of the search.
|
| virtual void | ExitSearch () |
| | End of the search.
|
| virtual void | BeginNextDecision (DecisionBuilder *b) |
| | Before calling DecisionBuilder::Next.
|
| virtual void | EndNextDecision (DecisionBuilder *b, Decision *d) |
| | After calling DecisionBuilder::Next, along with the returned decision.
|
| virtual void | ApplyDecision (Decision *d) |
| | Before applying the decision.
|
| virtual void | RefuteDecision (Decision *d) |
| | Before refuting the decision.
|
| virtual void | AfterDecision (Decision *d, bool apply) |
| virtual void | EndFail () |
| | After completing the backtrack.
|
| virtual void | BeginInitialPropagation () |
| | Before the initial propagation.
|
| virtual void | EndInitialPropagation () |
| | After the initial propagation.
|
| virtual bool | AcceptSolution () |
| virtual bool | AtSolution () |
| virtual void | NoMoreSolutions () |
| | When the search tree is finished.
|
| virtual bool | AtLocalOptimum () |
| virtual bool | AcceptDelta (Assignment *delta, Assignment *deltadelta) |
| virtual void | AcceptNeighbor () |
| | After accepting a neighbor during local search.
|
| virtual void | AcceptUncheckedNeighbor () |
| | After accepting an unchecked neighbor during local search.
|
| virtual bool | IsUncheckedSolutionLimitReached () |
| virtual void | PeriodicCheck () |
| | Periodic call to check limits in long running methods.
|
| virtual int | ProgressPercent () |
| virtual void | Accept (ModelVisitor *visitor) const |
| | Accepts the given model visitor.
|
| Solver * | solver () const |
| Public Member Functions inherited from operations_research::BaseObject |
| | BaseObject () |
| | BaseObject (const BaseObject &)=delete |
| BaseObject & | operator= (const BaseObject &)=delete |
| virtual | ~BaseObject ()=default |