TaskModelIntArith Arithmetic constraints GECODE_INT_EXPORT void GECODE_INT_EXPORT void Gecode::min (Home home, IntVar x0, IntVar x1, IntVar x2, IntConLevel icl=ICL_DEF) min Home home IntVar x0 IntVar x1 IntVar x2 IntConLevel icl ICL_DEF Post propagator for $ \min\{x_0,x_1\}=x_2$. Supports both bounds consistency (icl = ICL_BND, default) and domain consistency (icl = ICL_DOM). GECODE_INT_EXPORT void GECODE_INT_EXPORT void Gecode::min (Home home, const IntVarArgs &x, IntVar y, IntConLevel icl=ICL_DEF) min Home home const IntVarArgs & x IntVar y IntConLevel icl ICL_DEF Post propagator for $ \min x=y$. Supports both bounds consistency (icl = ICL_BND, default) and domain consistency (icl = ICL_DOM).If x is empty, an exception of type Int::TooFewArguments is thrown. GECODE_INT_EXPORT void GECODE_INT_EXPORT void Gecode::max (Home home, IntVar x0, IntVar x1, IntVar x2, IntConLevel icl=ICL_DEF) max Home home IntVar x0 IntVar x1 IntVar x2 IntConLevel icl ICL_DEF Post propagator for $ \max\{x_0,x_1\}=x_2$. Supports both bounds consistency (icl = ICL_BND, default) and domain consistency (icl = ICL_DOM). GECODE_INT_EXPORT void GECODE_INT_EXPORT void Gecode::max (Home home, const IntVarArgs &x, IntVar y, IntConLevel icl=ICL_DEF) max Home home const IntVarArgs & x IntVar y IntConLevel icl ICL_DEF Post propagator for $ \max x=y$. Supports both bounds consistency (icl = ICL_BND, default) and domain consistency (icl = ICL_DOM).If x is empty, an exception of type Int::TooFewArguments is thrown. GECODE_INT_EXPORT void GECODE_INT_EXPORT void Gecode::abs (Home home, IntVar x0, IntVar x1, IntConLevel icl=ICL_DEF) abs Home home IntVar x0 IntVar x1 IntConLevel icl ICL_DEF Post propagator for $ |x_0|=x_1$. Supports both bounds consistency (icl = ICL_BND, default) and domain consistency (icl = ICL_DOM). GECODE_INT_EXPORT void GECODE_INT_EXPORT void Gecode::mult (Home home, IntVar x0, IntVar x1, IntVar x2, IntConLevel icl=ICL_DEF) mult Home home IntVar x0 IntVar x1 IntVar x2 IntConLevel icl ICL_DEF Post propagator for $x_0\cdot x_1=x_2$. Supports both bounds consistency (icl = ICL_BND, default) and domain consistency (icl = ICL_DOM). GECODE_INT_EXPORT void GECODE_INT_EXPORT void Gecode::divmod (Home home, IntVar x0, IntVar x1, IntVar x2, IntVar x3, IntConLevel icl=ICL_DEF) divmod Home home IntVar x0 IntVar x1 IntVar x2 IntVar x3 IntConLevel icl ICL_DEF Post propagator for $x_0\ \mathrm{div}\ x_1=x_2 \land x_0\ \mathrm{mod}\ x_1 = x_3$. Supports bounds consistency (icl = ICL_BND, default). GECODE_INT_EXPORT void GECODE_INT_EXPORT void Gecode::div (Home home, IntVar x0, IntVar x1, IntVar x2, IntConLevel icl=ICL_DEF) div Home home IntVar x0 IntVar x1 IntVar x2 IntConLevel icl ICL_DEF Post propagator for $x_0\ \mathrm{div}\ x_1=x_2$. Supports bounds consistency (icl = ICL_BND, default). GECODE_INT_EXPORT void GECODE_INT_EXPORT void Gecode::mod (Home home, IntVar x0, IntVar x1, IntVar x2, IntConLevel icl=ICL_DEF) mod Home home IntVar x0 IntVar x1 IntVar x2 IntConLevel icl ICL_DEF Post propagator for $x_0\ \mathrm{mod}\ x_1=x_2$. Supports bounds consistency (icl = ICL_BND, default). GECODE_INT_EXPORT void GECODE_INT_EXPORT void Gecode::sqr (Home home, IntVar x0, IntVar x1, IntConLevel icl=ICL_DEF) sqr Home home IntVar x0 IntVar x1 IntConLevel icl ICL_DEF Post propagator for $x_0^2=x_1$. Supports both bounds consistency (icl = ICL_BND, default) and domain consistency (icl = ICL_DOM). GECODE_INT_EXPORT void GECODE_INT_EXPORT void Gecode::sqrt (Home home, IntVar x0, IntVar x1, IntConLevel icl=ICL_DEF) sqrt Home home IntVar x0 IntVar x1 IntConLevel icl ICL_DEF Post propagator for $\lfloor\sqrt{x_0}\rfloor=x_1$. Supports both bounds consistency (icl = ICL_BND, default) and domain consistency (icl = ICL_DOM). GECODE_INT_EXPORT void GECODE_INT_EXPORT void Gecode::pow (Home home, IntVar x0, int n, IntVar x1, IntConLevel icl=ICL_DEF) pow Home home IntVar x0 int n IntVar x1 IntConLevel icl ICL_DEF Post propagator for $x_0^n=x_1$. Supports both bounds consistency (icl = ICL_BND, default) and domain consistency (icl = ICL_DOM).Throws an exception of type Int::OutOfLimits, if n is negative. GECODE_INT_EXPORT void GECODE_INT_EXPORT void Gecode::nroot (Home home, IntVar x0, int n, IntVar x1, IntConLevel icl=ICL_DEF) nroot Home home IntVar x0 int n IntVar x1 IntConLevel icl ICL_DEF Post propagator for $\lfloor\sqrt[n]{x_0}\rfloor=x_1$. Supports both bounds consistency (icl = ICL_BND, default) and domain consistency (icl = ICL_DOM).Throws an exception of type Int::OutOfLimits, if n is not strictly positive.