161162163164165166167
* * @param VAR an integer variable * @param TABLE an array of values */ public static Constraint member(IntVar VAR, int[] TABLE) { return new Member(VAR, TABLE); }
172173174175176177178
* @param VAR an integer variable * @param LB the lower bound of the interval * @param UB the upper bound of the interval */ public static Constraint member(IntVar VAR, int LB, int UB) { return new Member(VAR, LB, UB); }