/* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */ /* * Main authors: * Christian Schulte * * Copyright: * Christian Schulte, 2004 * * 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 { void element(Home home, IntSharedArray c, IntVar x0, IntVar x1, IntPropLevel) { using namespace Int; if (c.size() == 0) throw TooFewArguments("Int::element"); GECODE_POST; for (int i=0; i(home,c,x0,x1))); } void element(Home home, IntSharedArray c, IntVar x0, int offset, IntVar x1, IntPropLevel) { using namespace Int; if (c.size() == 0) throw TooFewArguments("Int::element"); GECODE_POST; for (int i=0; i(home,c,x0,x1))); } else { OffsetView ov(x0,offset); GECODE_ES_FAIL((Element::post_int(home,c,ov,x1))); } } void element(Home home, IntSharedArray c, IntVar x0, BoolVar x1, IntPropLevel) { using namespace Int; if (c.size() == 0) throw TooFewArguments("Int::element"); GECODE_POST; for (int i=0; i(home,c,x0,x1))); } void element(Home home, IntSharedArray c, IntVar x0, int offset, BoolVar x1, IntPropLevel) { using namespace Int; if (c.size() == 0) throw TooFewArguments("Int::element"); GECODE_POST; for (int i=0; i(home,c,x0,x1))); } else { OffsetView ov(x0,offset); GECODE_ES_FAIL((Element::post_int(home,c,ov,x1))); } } void element(Home home, IntSharedArray c, IntVar x0, int x1, IntPropLevel) { using namespace Int; if (c.size() == 0) throw TooFewArguments("Int::element"); Limits::check(x1,"Int::element"); GECODE_POST; for (int i=0; i(home,c,x0,cx1))); } void element(Home home, IntSharedArray c, IntVar x0, int offset, int x1, IntPropLevel) { using namespace Int; if (c.size() == 0) throw TooFewArguments("Int::element"); Limits::check(x1,"Int::element"); GECODE_POST; for (int i=0; i(home,c,x0,cx1))); } else { OffsetView ov(x0,offset); GECODE_ES_FAIL((Element::post_int(home,c,ov,cx1))); } } void element(Home home, const IntVarArgs& c, IntVar x0, IntVar x1, IntPropLevel ipl) { using namespace Int; if (c.size() == 0) throw TooFewArguments("Int::element"); GECODE_POST; IdxViewArray iv(home,c); if ((vbd(ipl) == IPL_DOM) || (vbd(ipl) == IPL_DEF)) { GECODE_ES_FAIL((Element::ViewDom ::post(home,iv,x0,x1))); } else { GECODE_ES_FAIL((Element::ViewBnd ::post(home,iv,x0,x1))); } } void element(Home home, const IntVarArgs& c, IntVar x0, int offset, IntVar x1, IntPropLevel ipl) { using namespace Int; if (c.size() == 0) throw TooFewArguments("Int::element"); GECODE_POST; IdxViewArray iv(home,c); if ((vbd(ipl) == IPL_DOM) || (vbd(ipl) == IPL_DEF)) { if (offset==0) { GECODE_ES_FAIL((Element::ViewDom ::post(home,iv,x0,x1))); } else { OffsetView ov(x0,offset); GECODE_ES_FAIL((Element::ViewDom ::post(home,iv,ov,x1))); } } else { if (offset==0) { GECODE_ES_FAIL((Element::ViewBnd ::post(home,iv,x0,x1))); } else { OffsetView ov(x0,offset); GECODE_ES_FAIL((Element::ViewBnd ::post(home,iv,ov,x1))); } } } void element(Home home, const IntVarArgs& c, IntVar x0, int x1, IntPropLevel ipl) { using namespace Int; if (c.size() == 0) throw TooFewArguments("Int::element"); Limits::check(x1,"Int::element"); GECODE_POST; IdxViewArray iv(home,c); ConstIntView v1(x1); if ((vbd(ipl) == IPL_DOM) || (vbd(ipl) == IPL_DEF)) { GECODE_ES_FAIL((Element::ViewDom ::post(home,iv,x0,v1))); } else { GECODE_ES_FAIL((Element::ViewBnd ::post(home,iv,x0,v1))); } } void element(Home home, const IntVarArgs& c, IntVar x0, int offset, int x1, IntPropLevel ipl) { using namespace Int; if (c.size() == 0) throw TooFewArguments("Int::element"); Limits::check(x1,"Int::element"); GECODE_POST; IdxViewArray iv(home,c); ConstIntView v1(x1); if ((vbd(ipl) == IPL_DOM) || (vbd(ipl) == IPL_DEF)) { if (offset==0) { GECODE_ES_FAIL((Element::ViewDom ::post(home,iv,x0,v1))); } else { OffsetView ov(x0,offset); GECODE_ES_FAIL((Element::ViewDom ::post(home,iv,ov,v1))); } } else { if (offset==0) { GECODE_ES_FAIL((Element::ViewBnd ::post(home,iv,x0,v1))); } else { OffsetView ov(x0,offset); GECODE_ES_FAIL((Element::ViewBnd ::post(home,iv,ov,v1))); } } } void element(Home home, const BoolVarArgs& c, IntVar x0, BoolVar x1, IntPropLevel) { using namespace Int; if (c.size() == 0) throw TooFewArguments("Int::element"); GECODE_POST; IdxViewArray iv(home,c); GECODE_ES_FAIL((Element::ViewBnd ::post(home,iv,x0,x1))); } void element(Home home, const BoolVarArgs& c, IntVar x0, int offset, BoolVar x1, IntPropLevel) { using namespace Int; if (c.size() == 0) throw TooFewArguments("Int::element"); GECODE_POST; IdxViewArray iv(home,c); if (offset==0) { GECODE_ES_FAIL((Element::ViewBnd ::post(home,iv,x0,x1))); } else { OffsetView ov(x0,offset); GECODE_ES_FAIL((Element::ViewBnd ::post(home,iv,ov,x1))); } } void element(Home home, const BoolVarArgs& c, IntVar x0, int x1, IntPropLevel) { using namespace Int; if (c.size() == 0) throw TooFewArguments("Int::element"); Limits::check(x1,"Int::element"); GECODE_POST; IdxViewArray iv(home,c); ConstIntView v1(x1); GECODE_ES_FAIL((Element::ViewBnd ::post(home,iv,x0,v1))); } void element(Home home, const BoolVarArgs& c, IntVar x0, int offset, int x1, IntPropLevel) { using namespace Int; if (c.size() == 0) throw TooFewArguments("Int::element"); Limits::check(x1,"Int::element"); GECODE_POST; IdxViewArray iv(home,c); ConstIntView v1(x1); if (offset==0) { GECODE_ES_FAIL((Element::ViewBnd ::post(home,iv,x0,v1))); } else { OffsetView ov(x0,offset); GECODE_ES_FAIL((Element::ViewBnd ::post(home,iv,ov,v1))); } } namespace { IntVar pair(Home home, IntVar x, int w, IntVar y, int h) { IntVar xy(home,0,w*h-1); if (Int::Element::Pair::post(home,x,y,xy,w,h) != ES_OK) home.fail(); return xy; } IntVar pairWithOffsets(Home home, IntVar x, int xoff, int w, IntVar y, int yoff, int h) { IntVar xy(home,0,w*h-1); if (xoff==0 && yoff==0) { if (Int::Element::Pair::post(home,x,y,xy,w,h) != ES_OK) home.fail(); } else { Int::OffsetView xo(x,xoff); Int::OffsetView yo(y,yoff); if (Int::Element::PairWithOffsets::post(home,xo,yo,xy,w,h) != ES_OK) home.fail(); } return xy; } } void element(Home home, IntSharedArray a, IntVar x, int w, IntVar y, int h, IntVar z, IntPropLevel ipl) { using namespace Int; if (a.size() != w*h) throw Int::ArgumentSizeMismatch("Int::element"); GECODE_POST; element(home, a, pair(home,x,w,y,h), z, ipl); } void element(Home home, IntSharedArray a, IntVar x, int xoff, int w, IntVar y, int yoff, int h, IntVar z, IntPropLevel ipl) { using namespace Int; if (a.size() != w*h) throw Int::ArgumentSizeMismatch("Int::element"); GECODE_POST; element(home, a, pairWithOffsets(home,x,xoff,w,y,yoff,h), z, ipl); } void element(Home home, IntSharedArray a, IntVar x, int w, IntVar y, int h, BoolVar z, IntPropLevel ipl) { using namespace Int; if (a.size() != w*h) throw Int::ArgumentSizeMismatch("Int::element"); GECODE_POST; element(home, a, pair(home,x,w,y,h), z, ipl); } void element(Home home, IntSharedArray a, IntVar x, int xoff, int w, IntVar y, int yoff, int h, BoolVar z, IntPropLevel ipl) { using namespace Int; if (a.size() != w*h) throw Int::ArgumentSizeMismatch("Int::element"); GECODE_POST; element(home, a, pairWithOffsets(home,x,xoff,w,y,yoff,h), z, ipl); } void element(Home home, const IntVarArgs& a, IntVar x, int w, IntVar y, int h, IntVar z, IntPropLevel ipl) { using namespace Int; if (a.size() != w*h) throw Int::ArgumentSizeMismatch("Int::element"); GECODE_POST; element(home, a, pair(home,x,w,y,h), z, ipl); } void element(Home home, const IntVarArgs& a, IntVar x, int xoff, int w, IntVar y, int yoff, int h, IntVar z, IntPropLevel ipl) { using namespace Int; if (a.size() != w*h) throw Int::ArgumentSizeMismatch("Int::element"); GECODE_POST; element(home, a, pairWithOffsets(home,x,xoff,w,y,yoff,h), z, ipl); } void element(Home home, const BoolVarArgs& a, IntVar x, int w, IntVar y, int h, BoolVar z, IntPropLevel ipl) { using namespace Int; if (a.size() != w*h) throw Int::ArgumentSizeMismatch("Int::element"); GECODE_POST; element(home, a, pair(home,x,w,y,h), z, ipl); } void element(Home home, const BoolVarArgs& a, IntVar x, int xoff, int w, IntVar y, int yoff, int h, BoolVar z, IntPropLevel ipl) { using namespace Int; if (a.size() != w*h) throw Int::ArgumentSizeMismatch("Int::element"); GECODE_POST; element(home, a, pairWithOffsets(home,x,xoff,w,y,yoff,h), z, ipl); } } // STATISTICS: int-post