/* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */ /* * Main authors: * Denys Duchier * * Copyright: * Denys Duchier, 2011 * * 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. * */ namespace Gecode { namespace Set { namespace Channel { template forceinline ChannelSet::ChannelSet(Home home, ViewArray >& xs0, ViewArray >& ys0) : Propagator(home), xs(xs0), ys(ys0) { for (int i=xs.size(); i--;) xs[i].initCache(home,IntSet::empty,IntSet(0,ys.size()-1)); for (int i=ys.size(); i--;) ys[i].initCache(home,IntSet::empty,IntSet(0,xs.size()-1)); xs.subscribe(home,*this, PC_SET_ANY); ys.subscribe(home,*this, PC_SET_ANY); } template forceinline ChannelSet::ChannelSet(Space& home, ChannelSet& p) : Propagator(home, p) { xs.update(home, p.xs); ys.update(home, p.ys); } template forceinline ExecStatus ChannelSet::post(Home home, ViewArray >& xs, ViewArray >& ys) { int xssize = xs.size(); for (int i=ys.size(); i--;) { GECODE_ME_CHECK(ys[i].exclude(home, xssize, Limits::max)); GECODE_ME_CHECK(ys[i].exclude(home, Limits::min, -1)); } int yssize = ys.size(); for (int i=xs.size(); i--;) { GECODE_ME_CHECK(xs[i].exclude(home, yssize, Limits::max)); GECODE_ME_CHECK(xs[i].exclude(home, Limits::min, -1)); } (void) new (home) ChannelSet(home,xs,ys); return ES_OK; } template PropCost ChannelSet::cost(const Space&, const ModEventDelta&) const { return PropCost::quadratic(PropCost::HI, xs.size()+ys.size()); } template void ChannelSet::reschedule(Space& home) { xs.reschedule(home,*this, PC_SET_ANY); ys.reschedule(home,*this, PC_SET_ANY); } template forceinline size_t ChannelSet::dispose(Space& home) { xs.cancel(home, *this, PC_SET_ANY); ys.cancel(home, *this, PC_SET_ANY); (void) Propagator::dispose(home); return sizeof(*this); } template Actor* ChannelSet::copy(Space& home) { return new (home) ChannelSet(home,*this); } template ExecStatus ChannelSet::propagate(Space& home, const ModEventDelta&) { int assigned = 0; bool again = true; while (again) { assigned = 0; again = false; for (int i=xs.size(); i--;) { if (xs[i].assigned()) ++assigned; if (xs[i].glbModified()) { GlbDiffRanges xilb(xs[i]); Iter::Ranges::ToValues > dv(xilb); for (;dv();++dv) GECODE_ME_CHECK(ys[dv.val()].include(home,i)); xs[i].cacheGlb(home); again = true; } if (xs[i].lubModified()) { LubDiffRanges xiub(xs[i]); Iter::Ranges::ToValues > dv(xiub); for (;dv();++dv) GECODE_ME_CHECK(ys[dv.val()].exclude(home,i)); xs[i].cacheLub(home); again = true; } } for (int i=ys.size(); i--;) { if (ys[i].assigned()) ++assigned; if (ys[i].glbModified()) { GlbDiffRanges yilb(ys[i]); Iter::Ranges::ToValues > dv(yilb); for (;dv();++dv) GECODE_ME_CHECK(xs[dv.val()].include(home,i)); ys[i].cacheGlb(home); again = true; } if (ys[i].lubModified()) { LubDiffRanges yiub(ys[i]); Iter::Ranges::ToValues > dv(yiub); for (;dv();++dv) GECODE_ME_CHECK(xs[dv.val()].exclude(home,i)); ys[i].cacheLub(home); again = true; } } } return (assigned == xs.size()+ys.size()) ? home.ES_SUBSUMED(*this) : ES_FIX; } }}} // STATISTICS: set-prop