/* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */ /* * Main authors: * Christian Schulte * Gabor Szokoli * * Contributing authors: * Roberto CastaƱeda Lozano * * Copyright: * Roberto CastaƱeda Lozano, 2015 * Christian Schulte, 2002 * Gabor Szokoli, 2003 * * This file is part of Gecode, the generic constraint * development environment: * http://www.gecode.org * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * */ #include #include namespace Gecode { void distinct(Home home, const IntVarArgs& x, IntPropLevel ipl) { using namespace Int; if (same(x)) throw ArgumentSame("Int::distinct"); GECODE_POST; ViewArray xv(home,x); switch (vbd(ipl)) { case IPL_BND: GECODE_ES_FAIL(Distinct::Bnd::post(home,xv)); break; case IPL_DOM: GECODE_ES_FAIL(Distinct::Dom::post(home,xv)); break; default: GECODE_ES_FAIL(Distinct::Val::post(home,xv)); } } void distinct(Home home, const IntArgs& c, const IntVarArgs& x, IntPropLevel ipl) { using namespace Int; if (same(x)) throw ArgumentSame("Int::distinct"); if (c.size() != x.size()) throw ArgumentSizeMismatch("Int::distinct"); GECODE_POST; ViewArray cx(home,x.size()); for (int i=0; i(c[i]) + static_cast(x[i].min())); long long int cx_max = (static_cast(c[i]) + static_cast(x[i].max())); Limits::check(c[i],"Int::distinct"); Limits::check(cx_min,"Int::distinct"); Limits::check(cx_max,"Int::distinct"); cx[i] = OffsetView(x[i],c[i]); } switch (vbd(ipl)) { case IPL_BND: GECODE_ES_FAIL(Distinct::Bnd::post(home,cx)); break; case IPL_DOM: GECODE_ES_FAIL(Distinct::Dom::post(home,cx)); break; default: GECODE_ES_FAIL(Distinct::Val::post(home,cx)); } } void distinct(Home home, const BoolVarArgs& b, const IntVarArgs& x, IntPropLevel ipl) { using namespace Int; if (same(x)) throw ArgumentSame("Int::distinct"); if (b.size() != x.size()) throw ArgumentSizeMismatch("Int::distinct"); GECODE_POST; int n = x.size(); int min = Limits::max; int max = Limits::min; int m = 0; for (int i=0; i Limits::min+m) start = min-(m+1); else throw OutOfLimits("Int::distinct"); ViewArray y(home,m); int j = 0; for (int i=0; i::post (home, b[i], x[i], start+j, y[j]))); j++; } assert(j == m); switch (vbd(ipl)) { case IPL_BND: GECODE_ES_FAIL(Distinct::Bnd::post(home,y)); break; case IPL_DOM: GECODE_ES_FAIL(Distinct::Dom::post(home,y)); break; default: GECODE_ES_FAIL(Distinct::Val::post(home,y)); } } void distinct(Home home, const IntVarArgs& x, int c, IntPropLevel ipl) { using namespace Int; if (same(x)) throw ArgumentSame("Int::distinct"); GECODE_POST; int n = x.size(); int min = Limits::max; int max = Limits::min; int m = 0; for (int i=0; i Limits::min+m) start = min-(m+1); else throw OutOfLimits("Int::distinct"); ViewArray y(home,m); int j = 0; for (int i=0; i::post(home,y)); break; case IPL_DOM: GECODE_ES_FAIL(Distinct::Dom::post(home,y)); break; default: GECODE_ES_FAIL(Distinct::Val::post(home,y)); } } } // STATISTICS: int-post