Generated on Mon Aug 25 11:35:46 2008 for Gecode by doxygen 1.5.6

Domain constraints
[Using finite domain integers]


Functions

void Gecode::dom (Space *home, IntVar x, int l, int m, IntConLevel icl=ICL_DEF, PropKind pk=PK_DEF)
 Propagates $ l\leq x\leq m$.
void Gecode::dom (Space *home, const IntVarArgs &x, int l, int m, IntConLevel icl=ICL_DEF, PropKind pk=PK_DEF)
 Propagates $ l\leq x_i\leq m$ for all $0\leq i<|x|$.
void Gecode::dom (Space *home, IntVar x, const IntSet &s, IntConLevel icl=ICL_DEF, PropKind pk=PK_DEF)
 Propagates $ x\in s $.
void Gecode::dom (Space *home, const IntVarArgs &x, const IntSet &s, IntConLevel icl=ICL_DEF, PropKind pk=PK_DEF)
 Propagates $ x_i\in s$ for all $0\leq i<|x|$.
void Gecode::dom (Space *home, IntVar x, int l, int m, BoolVar b, IntConLevel icl=ICL_DEF, PropKind pk=PK_DEF)
 Post propagator for $ (l\leq x \leq m) \Leftrightarrow b$.
void Gecode::dom (Space *home, IntVar x, const IntSet &s, BoolVar b, IntConLevel icl=ICL_DEF, PropKind pk=PK_DEF)
 Post propagator for $ (x \in s) \Leftrightarrow b$.


Function Documentation

void Gecode::dom ( Space *  home,
IntVar  x,
int  min,
int  max,
IntConLevel  ,
PropKind   
)

Propagates $ l\leq x\leq m$.

Definition at line 46 of file dom.cc.

void Gecode::dom ( Space *  home,
const IntVarArgs &  x,
int  min,
int  max,
IntConLevel  ,
PropKind   
)

Propagates $ l\leq x_i\leq m$ for all $0\leq i<|x|$.

Definition at line 56 of file dom.cc.

void Gecode::dom ( Space *  home,
IntVar  x,
const IntSet &  is,
IntConLevel  ,
PropKind   
)

Propagates $ x\in s $.

Definition at line 68 of file dom.cc.

void Gecode::dom ( Space *  home,
const IntVarArgs &  x,
const IntSet &  is,
IntConLevel  ,
PropKind   
)

Propagates $ x_i\in s$ for all $0\leq i<|x|$.

Definition at line 78 of file dom.cc.

void Gecode::dom ( Space *  home,
IntVar  x,
int  min,
int  max,
BoolVar  b,
IntConLevel  ,
PropKind   
)

Post propagator for $ (l\leq x \leq m) \Leftrightarrow b$.

Definition at line 90 of file dom.cc.

void Gecode::dom ( Space *  home,
IntVar  x,
const IntSet &  is,
BoolVar  b,
IntConLevel  ,
PropKind   
)

Post propagator for $ (x \in s) \Leftrightarrow b$.

Definition at line 100 of file dom.cc.