Generated on Fri Aug 24 2012 04:52:17 for Gecode by doxygen 1.8.1.2
Domain constraints

Functions

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

Detailed Description

Function Documentation

void Gecode::dom ( Home  home,
IntVar  x,
int  n,
IntConLevel   
)

Propagates $x=n$.

Definition at line 47 of file dom.cpp.

void Gecode::dom ( Home  home,
const IntVarArgs &  x,
int  n,
IntConLevel   
)

Propagates $ x_i=n$ for all $0\leq i<|x|$.

Definition at line 55 of file dom.cpp.

void Gecode::dom ( Home  home,
IntVar  x,
int  min,
int  max,
IntConLevel   
)

Propagates $ l\leq x\leq m$.

Definition at line 65 of file dom.cpp.

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

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

Definition at line 75 of file dom.cpp.

void Gecode::dom ( Home  home,
IntVar  x,
const IntSet &  is,
IntConLevel   
)

Propagates $ x\in s $.

Definition at line 87 of file dom.cpp.

void Gecode::dom ( Home  home,
const IntVarArgs &  x,
const IntSet &  is,
IntConLevel   
)

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

Definition at line 97 of file dom.cpp.

void Gecode::dom ( Home  home,
IntVar  x,
int  n,
BoolVar  b,
IntConLevel   
)

Post domain consistent propagator for $ (x=n) \Leftrightarrow b$.

Definition at line 109 of file dom.cpp.

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

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

Definition at line 116 of file dom.cpp.

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

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

Definition at line 125 of file dom.cpp.