/* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */ /* * Main authors: * Guido Tack * Christian Schulte * * Copyright: * Guido Tack, 2004,2006,2007 * Christian Schulte, 2004 * * Last modified: * $Date: 2008-05-27 19:24:07 +0200 (Tue, 27 May 2008) $ by $Author: tack $ * $Revision: 6982 $ * * 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 Element { template forceinline ElementUnionConst:: ElementUnionConst(Space* home, SView y0, SharedArray& iv0, RView y1) : Propagator(home), x0(y0), iv(iv0), x1(y1) { force(home); x0.subscribe(home,this, PC_SET_ANY); x1.subscribe(home,this, PC_SET_ANY); } template forceinline ElementUnionConst:: ElementUnionConst(Space* home, bool share, ElementUnionConst& p) : Propagator(home,share,p) { x0.update(home,share,p.x0); x1.update(home,share,p.x1); iv.update(home,share,p.iv); } template PropCost ElementUnionConst::cost(ModEventDelta) const { return PC_LINEAR_HI; } template Support::Symbol ElementUnionConst::ati(void) { return Reflection::mangle("Gecode::Set::Element::UnionConst"); } template Reflection::ActorSpec ElementUnionConst::spec(const Space* home, Reflection::VarMap& m) const { Reflection::ActorSpec s(ati()); Reflection::ArrayArg* a = Reflection::Arg::newArray(iv.size()); for (int i=0; i void ElementUnionConst::post(Space* home, Reflection::VarMap& vars, const Reflection::ActorSpec& spec) { spec.checkArity(3); SView x0(home, vars, spec[0]); Reflection::ArrayArg* sets = spec[1]->toArray(); SharedArray iv(sets->size()); for (int i=sets->size(); i--; ) { Reflection::IntArrayArgRanges r((*sets)[i]->toIntArray()); new (&iv[i]) IntSet(r); } RView x1(home, vars, spec[2]); (void) new (home) ElementUnionConst(home, x0, iv, x1); } template size_t ElementUnionConst::dispose(Space* home) { unforce(home); if (!home->failed()) { x0.cancel(home,this, PC_SET_ANY); x1.cancel(home,this, PC_SET_ANY); } iv.~SharedArray(); (void) Propagator::dispose(home); return sizeof(*this); } template ExecStatus ElementUnionConst:: post(Space* home, SView x0, SharedArray& xs, RView x1) { int n = xs.size(); // s2 \subseteq {1,...,n} Iter::Ranges::Singleton s(0, n-1); GECODE_ME_CHECK(x1.intersectI(home,s)); (void) new (home) ElementUnionConst(home,x0,xs,x1); return ES_OK; } template Actor* ElementUnionConst::copy(Space* home, bool share) { return new (home) ElementUnionConst(home,share,*this); } template ExecStatus ElementUnionConst::propagate(Space* home, ModEventDelta) { int n = iv.size(); GECODE_AUTOARRAY(bool, stillSelected, n); bool loopVar; do { loopVar = false; for (int i=n; i--;) stillSelected[i] = false; // Cache the upper bound iterator, as we have to // modify the upper bound while iterating LubRanges x1ub(x1); Iter::Ranges::Cache > x1ubc(x1ub); Iter::Ranges::ToValues > > vx1ub(x1ubc); GlbRanges x1lb(x1); Iter::Ranges::Cache > x1lbc(x1lb); Iter::Ranges::ToValues > > vx1(x1lbc); // In the first iteration, compute in before[i] the union // of all the upper bounds of the x_i. At the same time, // exclude inconsistent x_i from x1. GLBndSet sofarBefore(home); LUBndSet selectedInter(home, IntSet (Limits::min, Limits::max)); GECODE_AUTOARRAY(GLBndSet, before, n); int i = 0; unsigned int maxCard = 0; unsigned int minCard = Limits::card; while ( vx1ub() ) { i = vx1ub.val(); IntSetRanges candCardR(iv[i]); unsigned int candidateCard = Iter::Ranges::size(candCardR); IntSetRanges candlb(iv[i]); LubRanges x0ub(x0); Iter::Ranges::Diff > diff(candlb, x0ub); bool selectSingleInconsistent = false; if (x1.cardMax() <= 1) { GlbRanges x0lb(x0); IntSetRanges candub(iv[i]); Iter::Ranges::Diff, IntSetRanges > diff2(x0lb, candub); selectSingleInconsistent = diff2() || candidateCard < x0.cardMin(); } // exclude inconsistent x_i // an x_i is inconsistent if // * at most one x_i can be selected and there are // elements in x_0 that can't be in x_i // (selectSingleInconsistent) // * its min cardinality is greater than maxCard of x0 // * inter is not empty (there are elements in x_i // that can't be in x_0) if (selectSingleInconsistent || candidateCard > x0.cardMax() || diff()) { ModEvent me = (x1.exclude(home,i)); loopVar |= me_modified(me); GECODE_ME_CHECK(me); } else { stillSelected[i] = true; // if x_i is consistent, check whether we know // that its index is in x1 if (vx1() && vx1.val()==i) { // x0 >= candidate, candidate <= x0 // GlbRanges candlb(candidate); IntSetRanges candlb(iv[i]); ModEvent me = x0.includeI(home,candlb); loopVar |= me_modified(me); GECODE_ME_CHECK(me); ++vx1; } new (&before[i]) GLBndSet(home); before[i].update(home,sofarBefore); IntSetRanges cub(iv[i]); sofarBefore.includeI(home,cub); IntSetRanges clb(iv[i]); selectedInter.intersectI(home,clb); maxCard = std::max(maxCard, candidateCard); minCard = std::min(minCard, candidateCard); } ++vx1ub; } if (x1.cardMax()==0) { // Selector is empty, hence the result must be empty { GECODE_ME_CHECK(x0.cardMax(home,0)); } for (int i=n; i--;) if (stillSelected[i]) before[i].dispose(home); selectedInter.dispose(home); sofarBefore.dispose(home); return ES_SUBSUMED(this,home); } if (x1.cardMin() > 0) { // Selector is not empty, hence the intersection of the // possibly selected lower bounds is contained in x0 BndSetRanges si(selectedInter); ModEvent me = x0.includeI(home, si); loopVar |= me_modified(me); GECODE_ME_CHECK(me); me = x0.cardMin(home, minCard); loopVar |= me_modified(me); GECODE_ME_CHECK(me); } selectedInter.dispose(home); if (x1.cardMax() <= 1) { ModEvent me = x0.cardMax(home, maxCard); loopVar |= me_modified(me); GECODE_ME_CHECK(me); } { // x0 <= sofarBefore BndSetRanges sfB(sofarBefore); ModEvent me = x0.intersectI(home,sfB); loopVar |= me_modified(me); GECODE_ME_CHECK(me); } sofarBefore.dispose(home); GLBndSet sofarAfter(home); // In the second iteration, this time backwards, compute // sofarAfter as the union of all lub(x_j) with j>i for (int i=n; i--;) { if (!stillSelected[i]) continue; BndSetRanges b(before[i]); BndSetRanges s(sofarAfter); GlbRanges x0lb(x0); Iter::Ranges::Union inter(b,s); Iter::Ranges::Diff, Iter::Ranges::Union > diff(x0lb, inter); if (diff()) { ModEvent me = (x1.include(home,i)); loopVar |= me_modified(me); GECODE_ME_CHECK(me); // candidate != extra IntSetRanges ivi(iv[i]); if (!Iter::Ranges::subset(diff, ivi)) GECODE_ME_CHECK(ME_SET_FAILED); } IntSetRanges iviub(iv[i]); sofarAfter.includeI(home,iviub); before[i].dispose(home); } sofarAfter.dispose(home); } while (loopVar); if (x0.assigned() || x1.assigned()) { return ES_SUBSUMED(this,home); } return ES_FIX; } }}} // STATISTICS: set-prop