Functions | |
void | Gecode::linear (Home home, const IntVarArgs &x, IntRelType r, int c, IntConLevel icl=ICL_DEF) |
Post propagator for ![]() | |
void | Gecode::linear (Home home, const IntVarArgs &x, IntRelType r, IntVar y, IntConLevel icl=ICL_DEF) |
Post propagator for ![]() | |
void | Gecode::linear (Home home, const IntVarArgs &x, IntRelType r, int c, BoolVar b, IntConLevel icl=ICL_DEF) |
Post propagator for ![]() | |
void | Gecode::linear (Home home, const IntVarArgs &x, IntRelType r, IntVar y, BoolVar b, IntConLevel icl=ICL_DEF) |
Post propagator for ![]() | |
void | Gecode::linear (Home home, const IntArgs &a, const IntVarArgs &x, IntRelType r, int c, IntConLevel icl=ICL_DEF) |
Post propagator for ![]() | |
void | Gecode::linear (Home home, const IntArgs &a, const IntVarArgs &x, IntRelType r, IntVar y, IntConLevel icl=ICL_DEF) |
Post propagator for ![]() | |
void | Gecode::linear (Home home, const IntArgs &a, const IntVarArgs &x, IntRelType r, int c, BoolVar b, IntConLevel icl=ICL_DEF) |
Post propagator for ![]() | |
void | Gecode::linear (Home home, const IntArgs &a, const IntVarArgs &x, IntRelType r, IntVar y, BoolVar b, IntConLevel icl=ICL_DEF) |
Post propagator for ![]() |
All variants for linear constraints over integer variables share the following properties: - Bounds consistency (over the real numbers) is supported for all constraints (actually, for disequlities always domain consistency is used as it is cheaper). Domain consistency is supported for all non-reified constraint. As bounds consistency for inequalities coincides with domain consistency, the only real variation is for linear equations. Domain consistent linear equations have exponential complexity, so use with care! - Variables occurring multiply in the argument arrays are replaced by a single occurrence: for example, \form#132 becomes
.
void Gecode::linear | ( | Home | home, |
const IntVarArgs & | x, | ||
IntRelType | r, | ||
int | c, | ||
IntConLevel | icl | ||
) |
Post propagator for .
Definition at line 45 of file linear-int.cpp.
void Gecode::linear | ( | Home | home, |
const IntVarArgs & | x, | ||
IntRelType | r, | ||
IntVar | y, | ||
IntConLevel | icl | ||
) |
Post propagator for .
Definition at line 101 of file linear-int.cpp.
void Gecode::linear | ( | Home | home, |
const IntVarArgs & | x, | ||
IntRelType | r, | ||
int | c, | ||
BoolVar | b, | ||
IntConLevel | |||
) |
Post propagator for .
Definition at line 58 of file linear-int.cpp.
void Gecode::linear | ( | Home | home, |
const IntVarArgs & | x, | ||
IntRelType | r, | ||
IntVar | y, | ||
BoolVar | b, | ||
IntConLevel | |||
) |
Post propagator for .
Definition at line 131 of file linear-int.cpp.
void Gecode::linear | ( | Home | home, |
const IntArgs & | a, | ||
const IntVarArgs & | x, | ||
IntRelType | r, | ||
int | c, | ||
IntConLevel | icl = ICL_DEF |
||
) |
Post propagator for .
Throws an exception of type Int::ArgumentSizeMismatch, if a and x are of different size.
Definition at line 71 of file linear-int.cpp.
void Gecode::linear | ( | Home | home, |
const IntArgs & | a, | ||
const IntVarArgs & | x, | ||
IntRelType | r, | ||
IntVar | y, | ||
IntConLevel | icl = ICL_DEF |
||
) |
Post propagator for .
Throws an exception of type Int::ArgumentSizeMismatch, if a and x are of different size.
Definition at line 145 of file linear-int.cpp.
void Gecode::linear | ( | Home | home, |
const IntArgs & | a, | ||
const IntVarArgs & | x, | ||
IntRelType | r, | ||
int | c, | ||
BoolVar | b, | ||
IntConLevel | icl = ICL_DEF |
||
) |
Post propagator for .
Throws an exception of type Int::ArgumentSizeMismatch, if a and x are of different size.
Definition at line 86 of file linear-int.cpp.
void Gecode::linear | ( | Home | home, |
const IntArgs & | a, | ||
const IntVarArgs & | x, | ||
IntRelType | r, | ||
IntVar | y, | ||
BoolVar | b, | ||
IntConLevel | icl = ICL_DEF |
||
) |
Post propagator for .
Throws an exception of type Int::ArgumentSizeMismatch, if a and x are of different size.
Definition at line 177 of file linear-int.cpp.