|
(Note that these are not member functions.)
|
template<class Char , class Traits > |
std::basic_ostream< Char, Traits > & | operator<< (std::basic_ostream< Char, Traits > &os, const FloatView &x) |
| Print float variable view. More...
|
|
bool | same (const VarImpView< VarA > &x, const VarImpView< VarB > &y) |
| Test whether views x and y are the same. More...
|
|
bool | same (const ConstView< ViewA > &, const ConstView< ViewB > &) |
| Test whether two views are the same. More...
|
|
bool | same (const VarImpView< FloatVar > &, const ConstView< View > &) |
| Test whether two views are the same. More...
|
|
bool | same (const ConstView< ViewA > &, const DerivedView< ViewB > &) |
| Test whether two views are the same. More...
|
|
bool | same (const VarImpView< FloatVar > &, const DerivedView< View > &) |
| Test whether two views are the same. More...
|
|
bool | same (const DerivedView< View > &, const VarImpView< FloatVar > &) |
| Test whether two views are the same. More...
|
|
bool | same (const VarImpView< FloatVar > &x, const VarImpView< FloatVar > &y) |
| Test whether two views are the same. More...
|
|
bool | same (const DerivedView< ViewA > &x, const DerivedView< ViewB > &y) |
| Test whether two views are the same. More...
|
|
bool | before (const ViewA &x, const ViewB &y) |
| Test whether view x comes before y (arbitrary order) More...
|
|
bool | shared (const ConstView< ViewA > &, const ConstView< ViewB > &) |
| Test whether views share same variable. More...
|
|
bool | shared (const VarImpView< FloatVar > &, const ConstView< View > &) |
| Test whether views share same variable. More...
|
|
bool | shared (const DerivedView< ViewA > &, const ConstView< ViewB > &) |
| Test whether views share same variable. More...
|
|
bool | shared (const ConstView< View > &, const VarImpView< FloatVar > &) |
| Test whether views share same variable. More...
|
|
bool | shared (const ConstView< ViewA > &, const DerivedView< ViewB > &) |
| Test whether views share same variable. More...
|
|
bool | shared (const VarImpView< VarA > &, const VarImpView< VarB > &) |
| Test whether views share same variable. More...
|
|
bool | shared (const VarImpView< FloatVar > &, const DerivedView< View > &) |
| Test whether views share same variable. More...
|
|
bool | shared (const DerivedView< View > &, const VarImpView< FloatVar > &) |
| Test whether views share same variable. More...
|
|
bool | shared (const DerivedView< ViewA > &, const DerivedView< ViewB > &) |
| Test whether views share same variable. More...
|
|
|
typedef FloatVar | VarType |
| The variable type corresponding to the view. More...
|
|
typedef FloatVar ::VarImpType | VarImpType |
| The variable implementation type corresponding to the view. More...
|
|
VarImpType * | varimp (void) const |
| Return variable implementation of view. More...
|
|
unsigned int | degree (void) const |
| Return degree (number of subscribed propagators and advisors) More...
|
|
double | afc (void) const |
| Return accumulated failure count. More...
|
|
bool | assigned (void) const |
| Test whether view is assigned. More...
|
|
void | subscribe (Space &home, Propagator &p, PropCond pc, bool schedule=true) |
| Subscribe propagator p with propagation condition pc to view. More...
|
|
void | subscribe (Space &home, Advisor &a, bool fail=false) |
| Subscribe advisor a to view. More...
|
|
void | cancel (Space &home, Propagator &p, PropCond pc) |
| Cancel subscription of propagator p with propagation condition pc to view. More...
|
|
void | cancel (Space &home, Advisor &a, bool fail=false) |
| Cancel subscription of advisor a. More...
|
|
void | reschedule (Space &home, Propagator &p, PropCond pc) |
| Re-schedule propagator p with propagation condition pc. More...
|
|
void | update (Space &home, bool share, VarImpView< FloatVar > &y) |
| Update this view to be a clone of view y. More...
|
|
static bool | varderived (void) |
| Return whether this view is derived from a VarImpView. More...
|
|
static void | schedule (Space &home, Propagator &p, ModEvent me) |
| Schedule propagator p with modification event me. More...
|
|
static ModEvent | me (const ModEventDelta &med) |
| Return modification event for view type in med. More...
|
|
static ModEventDelta | med (ModEvent me) |
| Translate modification event me to modification event delta for view. More...
|
|
static ModEvent | modevent (const Delta &d) |
| Return modification event. More...
|
|
| VarImpView (void) |
| Default constructor. More...
|
|
| VarImpView (VarImpType *y) |
| Initialize with variable implementation y. More...
|
|
void | varimp (VarImpType *y) |
| Set variable implementation to y. More...
|
|
VarImpType * | x |
| Pointer to variable implementation. More...
|
|
Float view for float variables.
Definition at line 56 of file view.hpp.