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