/* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */ /* * Main authors: * Christian Schulte * Gabor Szokoli * * Copyright: * Christian Schulte, 2002 * Gabor Szokoli, 2003 * * Last modified: * $Date: 2011-08-18 06:25:49 +1000 (Thu, 18 Aug 2011) $ by $Author: schulte $ * $Revision: 12308 $ * * 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 namespace Gecode { using namespace Int; void distinct(Home home, const IntVarArgs& x, IntConLevel icl) { if (x.same(home)) throw ArgumentSame("Int::distinct"); if (home.failed()) return; ViewArray xv(home,x); switch (icl) { case ICL_BND: GECODE_ES_FAIL(Distinct::Bnd::post(home,xv)); break; case ICL_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, IntConLevel icl) { if (x.same(home)) throw ArgumentSame("Int::distinct"); if (c.size() != x.size()) throw ArgumentSizeMismatch("Int::distinct"); if (home.failed()) return; ViewArray cx(home,x.size()); for (int i = c.size(); i--; ) { double cx_min = (static_cast(c[i]) + static_cast(x[i].min())); double 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 (icl) { case ICL_BND: GECODE_ES_FAIL(Distinct::Bnd::post(home,cx)); break; case ICL_DOM: GECODE_ES_FAIL(Distinct::Dom::post(home,cx)); break; default: GECODE_ES_FAIL(Distinct::Val::post(home,cx)); } } } // STATISTICS: int-post