Custom brancher for knight's tours using Warnsdorff's rule. More...
Classes | |
class | Choice |
Choice More... |
Public Member Functions | |
virtual bool | status (const Space &) const |
Check status of brancher, return true if alternatives left. | |
virtual Gecode::Choice * | choice (Space &) |
Return choice. | |
virtual Choice * | choice (const Space &, Archive &e) |
Return choice. | |
virtual ExecStatus | commit (Space &home, const Gecode::Choice &_c, unsigned int a) |
Perform commit for choice _c and alternative a. | |
virtual void | print (const Space &, const Gecode::Choice &_c, unsigned int a, std::ostream &o) const |
Print explanation. | |
virtual Actor * | copy (Space &home) |
Copy brancher. | |
virtual size_t | dispose (Space &) |
Delete brancher and return its size. | |
virtual NGL * | ngl (Space &home, const Choice &c, unsigned int a) const |
Create no-good literal for choice c and alternative a. | |
unsigned int | id (void) const |
Return brancher id. | |
BrancherGroup | group (void) const |
Return group brancher belongs to. | |
void | group (BrancherGroup g) |
Add brancher to group g. | |
virtual | ~Actor (void) |
To avoid warnings. |
Static Public Member Functions | |
static void | post (Home home, const IntVarArgs &x) |
Post brancher. | |
static void * | operator new (size_t s, Space &home) |
Allocate memory from space. | |
static void | operator delete (void *p, Space &home) |
No-op for exceptions. | |
static void * | operator new (size_t s) |
Not used. | |
static void | operator delete (void *p) |
Not used. |
Protected Member Functions | |
Warnsdorff (Home home, ViewArray< Int::IntView > &xv) | |
Construct brancher. | |
Warnsdorff (Space &home, Warnsdorff &b) | |
Copy constructor. | |
Protected Member Functions inherited from Gecode::Brancher | |
Brancher (Home home) | |
Constructor for creation. | |
Brancher (Space &home, Brancher &b) | |
Constructor for cloning b. |
Protected Attributes | |
ViewArray< Int::IntView > | x |
Views of the brancher. | |
int | start |
Next variable to branch on. |
Custom brancher for knight's tours using Warnsdorff's rule.
This class implements Warnsdorff's rule for finding knight's tours. The next position is choosen by taking the jump that minimizes the number of alternatives in the next step.
Definition at line 58 of file knights.cpp.
|
inlineprotected |
Construct brancher.
Definition at line 84 of file knights.cpp.
|
inlineprotected |
Copy constructor.
Definition at line 87 of file knights.cpp.
|
inlinevirtual |
Check status of brancher, return true if alternatives left.
Implements Gecode::Brancher.
Definition at line 93 of file knights.cpp.
|
inlinevirtual |
|
inlinevirtual |
Perform commit for choice _c and alternative a.
Implements Gecode::Brancher.
Definition at line 126 of file knights.cpp.
|
inlinevirtual |
|
inlinestatic |
Post brancher.
Definition at line 148 of file knights.cpp.
|
inlinevirtual |
Delete brancher and return its size.
Reimplemented from Gecode::Actor.
Definition at line 153 of file knights.cpp.
|
protected |
Views of the brancher.
Definition at line 61 of file knights.cpp.
|
mutableprotected |
Next variable to branch on.
Definition at line 63 of file knights.cpp.