C++ Reference

C++ Reference: Routing

DelayedCallMethod0< T >

Detailed Description

template<class T>
class operations_research::DelayedCallMethod0< T >

Low-priority demon proxy to a method on the constraint with no arguments.

These methods represents generic demons that will call back a method on the constraint during their Run method. This demon will have a priority DELAYED_PRIORITY.

Definition at line 663 of file constraint_solveri.h.

Public Member Functions

 DelayedCallMethod0 (T *const ct, void(T::*method)(), const std::string &name)
 
 ~DelayedCallMethod0 () override
 
void Run (Solver *const s) override
 This is the main callback of the demon. More...
 
Solver::DemonPriority priority () const override
 This method returns the priority of the demon. More...
 
std::string DebugString () const override
 
void inhibit (Solver *const s)
 This method inhibits the demon in the search tree below the current position. More...
 
void desinhibit (Solver *const s)
 This method un-inhibits the demon that was previously inhibited. More...
 

Constructor & Destructor Documentation

◆ DelayedCallMethod0()

DelayedCallMethod0 ( T *const  ct,
void(T::*)()  method,
const std::string &  name 
)
inline

Definition at line 665 of file constraint_solveri.h.

◆ ~DelayedCallMethod0()

~DelayedCallMethod0 ( )
inlineoverride

Definition at line 668 of file constraint_solveri.h.

Member Function Documentation

◆ DebugString()

std::string DebugString ( ) const
inlineoverridevirtual

Reimplemented from Demon.

Definition at line 676 of file constraint_solveri.h.

◆ desinhibit()

void desinhibit ( Solver *const  s)
inherited

This method un-inhibits the demon that was previously inhibited.

◆ inhibit()

void inhibit ( Solver *const  s)
inherited

This method inhibits the demon in the search tree below the current position.

◆ priority()

Solver::DemonPriority priority ( ) const
inlineoverridevirtual

This method returns the priority of the demon.

Usually a demon is fast, slow or normal. Immediate demons are reserved for internal use to maintain variables.

Reimplemented from Demon.

Definition at line 672 of file constraint_solveri.h.

◆ Run()

void Run ( Solver *const  s)
inlineoverridevirtual

This is the main callback of the demon.

Implements Demon.

Definition at line 670 of file constraint_solveri.h.


The documentation for this class was generated from the following file: