Abstract class for view selection. More...
#include <view-sel.hpp>
Public Types | |
typedef _View | View |
Define the view type. | |
typedef View::VarType | Var |
The corresponding variable type. | |
Initialization | |
ViewSel (Space &home, const VarBranch< Var > &vb) | |
Constructor for creation. | |
ViewSel (Space &home, ViewSel< View > &vs) | |
Constructor for copying during cloning. | |
View selection and tie breaking | |
virtual int | select (Space &home, ViewArray< View > &x, int s)=0 |
Select a view from x starting from s and return its position. | |
virtual int | select (Space &home, ViewArray< View > &x, int s, BrancherFilter< View > &f)=0 |
Select a view from x starting from s and return its position. | |
virtual int | select (Space &home, ViewArray< View > &x, int s, BrancherNoFilter< View > &f) |
Select a view from x starting from s and return its position. | |
virtual void | ties (Space &home, ViewArray< View > &x, int s, int *ties, int &n)=0 |
Select ties from x starting from s. | |
virtual void | ties (Space &home, ViewArray< View > &x, int s, int *ties, int &n, BrancherFilter< View > &f)=0 |
Select ties from x starting from s. | |
virtual void | ties (Space &home, ViewArray< View > &x, int s, int *ties, int &n, BrancherNoFilter< View > &f) |
Select ties from x starting from s. | |
virtual void | brk (Space &home, ViewArray< View > &x, int *ties, int &n)=0 |
Break ties in x and update to new ties. | |
virtual int | select (Space &home, ViewArray< View > &x, int *ties, int n)=0 |
Select a view from x considering views with positions in ties. | |
Resource management and cloning | |
virtual ViewSel< View > * | copy (Space &home)=0 |
Create copy during cloning. | |
virtual bool | notice (void) const |
Whether dispose must always be called (that is, notice is needed) | |
virtual void | dispose (Space &home) |
Dispose view selection. | |
virtual | ~ViewSel (void) |
Unused destructor. | |
Memory management | |
static void * | operator new (size_t s, Space &home) |
Allocate memory from space. | |
static void | operator delete (void *p, Space &home) |
Return memory to space. | |
static void | operator delete (void *p) |
Needed for exceptions. | |
Abstract class for view selection.
Definition at line 44 of file view-sel.hpp.
_View Gecode::ViewSel< _View >::View |
Define the view type.
Definition at line 47 of file view-sel.hpp.
View::VarType Gecode::ViewSel< _View >::Var |
The corresponding variable type.
Definition at line 49 of file view-sel.hpp.
|
inline |
Constructor for creation.
Definition at line 377 of file view-sel.hpp.
|
inline |
Constructor for copying during cloning.
Definition at line 380 of file view-sel.hpp.
|
virtual |
Unused destructor.
Definition at line 404 of file view-sel.hpp.
|
pure virtual |
Select a view from x starting from s and return its position.
Implemented in Gecode::ViewSelNone< View >, and Gecode::ViewSelRnd< View >.
|
pure virtual |
Select a view from x starting from s and return its position.
Implemented in Gecode::ViewSelNone< View >, and Gecode::ViewSelRnd< View >.
|
virtual |
Select a view from x starting from s and return its position.
Definition at line 383 of file view-sel.hpp.
|
pure virtual |
Select ties from x starting from s.
Implemented in Gecode::ViewSelNone< View >, and Gecode::ViewSelRnd< View >.
|
pure virtual |
Select ties from x starting from s.
Implemented in Gecode::ViewSelNone< View >, and Gecode::ViewSelRnd< View >.
|
virtual |
Select ties from x starting from s.
Definition at line 390 of file view-sel.hpp.
|
pure virtual |
Break ties in x and update to new ties.
Implemented in Gecode::ViewSelNone< View >, and Gecode::ViewSelRnd< View >.
|
pure virtual |
Select a view from x considering views with positions in ties.
Implemented in Gecode::ViewSelNone< View >, and Gecode::ViewSelRnd< View >.
|
pure virtual |
Create copy during cloning.
Implemented in Gecode::ViewSelMax< Merit >, Gecode::ViewSelMaxTbl< Merit >, Gecode::ViewSelMin< Merit >, Gecode::ViewSelMinTbl< Merit >, Gecode::ViewSelNone< View >, and Gecode::ViewSelRnd< View >.
|
virtual |
Whether dispose must always be called (that is, notice is needed)
Reimplemented in Gecode::ViewSelChoose< Choose, Merit >, Gecode::ViewSelChoose< ChooseMax, Merit >, Gecode::ViewSelChoose< ChooseMin, Merit >, Gecode::ViewSelChooseTbl< Choose, Merit >, Gecode::ViewSelChooseTbl< ChooseMax, Merit >, and Gecode::ViewSelChooseTbl< ChooseMin, Merit >.
Definition at line 397 of file view-sel.hpp.
|
virtual |
Dispose view selection.
Reimplemented in Gecode::ViewSelChoose< Choose, Merit >, Gecode::ViewSelChoose< ChooseMax, Merit >, Gecode::ViewSelChoose< ChooseMin, Merit >, Gecode::ViewSelChooseTbl< Choose, Merit >, Gecode::ViewSelChooseTbl< ChooseMax, Merit >, and Gecode::ViewSelChooseTbl< ChooseMin, Merit >.
Definition at line 402 of file view-sel.hpp.
|
inlinestatic |
Allocate memory from space.
Definition at line 413 of file view-sel.hpp.
|
inlinestatic |
Return memory to space.
Definition at line 410 of file view-sel.hpp.
|
inlinestatic |
Needed for exceptions.
Definition at line 407 of file view-sel.hpp.