
Cutoff generator for constant sequence. More...
#include <search.hh>
Public Member Functions | |
| CutoffConstant (unsigned long int c) | |
| Constructor. More... | |
| virtual unsigned long int | operator() (void) const |
| Return the current cutoff value. More... | |
| virtual unsigned long int | operator++ (void) |
| Increment and return the next cutoff value. More... | |
Public Member Functions inherited from Gecode::Search::Cutoff | |
| Cutoff (void) | |
| Default constructor. More... | |
| virtual | ~Cutoff (void) |
| Destructor. More... | |
Protected Attributes | |
| unsigned long int | c |
| Constant. More... | |
Additional Inherited Members | |
Static Public Member Functions inherited from Gecode::Search::Cutoff | |
| static void * | operator new (size_t s) |
| Memory management. More... | |
| static void | operator delete (void *p) |
| Free memory allocated from heap. More... | |
| static Cutoff * | constant (unsigned long int scale=1U) |
| Create generator for constant sequence with constant s. More... | |
| static Cutoff * | linear (unsigned long int scale=1U) |
| Create generator for linear sequence scaled by scale. More... | |
| static Cutoff * | geometric (unsigned long int scale=1U, double base=1.5) |
| static Cutoff * | luby (unsigned long int scale=1U) |
| Create generator for luby sequence with scale-factor scale. More... | |
| static Cutoff * | rnd (unsigned int seed, unsigned long int min, unsigned long int max, unsigned long int n) |
| static Cutoff * | append (Cutoff *c1, unsigned long int n, Cutoff *c2) |
| Append cutoff values from c2 after n values from c1. More... | |
| static Cutoff * | merge (Cutoff *c1, Cutoff *c2) |
| Merge cutoff values from c1 with values from c2. More... | |
| static Cutoff * | repeat (Cutoff *c, unsigned long int n) |
| Create generator that repeats n times each cutoff value from c. More... | |
|
inline |
Constructor.
Definition at line 59 of file cutoff.hpp.
|
virtual |
Return the current cutoff value.
Implements Gecode::Search::Cutoff.
Definition at line 48 of file cutoff.cpp.
|
virtual |
Increment and return the next cutoff value.
Implements Gecode::Search::Cutoff.
Definition at line 52 of file cutoff.cpp.
|
protected |