/* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */ /* * Main authors: * Guido Tack * Christian Schulte * * Copyright: * Guido Tack, 2004 * Christian Schulte, 2004 * * Last modified: * $Date: 2008-02-18 12:46:31 +0100 (Mon, 18 Feb 2008) $ by $Author: tack $ * $Revision: 6209 $ * * 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 "gecode/set/select.hh" #include "gecode/set/rel.hh" #include "gecode/set/rel-op.hh" namespace Gecode { namespace Set { namespace Select { PropCost SelectDisjoint::cost(ModEventDelta) const { return PC_QUADRATIC_LO; } Support::Symbol SelectDisjoint::ati(void) { return Support::Symbol("Gecode::Set::Select::Disjoint"); } Reflection::ActorSpec SelectDisjoint::spec(const Space* home, Reflection::VarMap& m) const { Reflection::ActorSpec s(ati()); return s << iv.spec(home, m) << x1.spec(home, m); } void SelectDisjoint::post(Space* home, Reflection::VarMap& vars, const Reflection::ActorSpec& spec) { spec.checkArity(2); IdxViewArray iv(home, vars, spec[0]); SetView x1(home, vars, spec[1]); (void) new (home) SelectDisjoint(home, iv, x1); } size_t SelectDisjoint::dispose(Space* home) { assert(!home->failed()); x1.cancel(home,this, PC_SET_ANY); iv.cancel(home,this,PC_SET_ANY); (void) Propagator::dispose(home); return sizeof(*this); } Actor* SelectDisjoint::copy(Space* home, bool share) { return new (home) SelectDisjoint(home,share,*this); } ExecStatus SelectDisjoint::propagate(Space* home, ModEventDelta) { int n = iv.size(); bool fix_flag = false; do { fix_flag = false; // Compute union of all selected elements' lower bounds GlbRanges x1lb(x1); Iter::Ranges::ToValues > vx1lb(x1lb); GLBndSet unionOfSelected(home); for(int i=0; vx1lb(); ++vx1lb) { while (iv[i].idx < vx1lb.val()) i++; GlbRanges clb(iv[i].var); unionOfSelected.includeI(home,clb); } { LubRanges x1ub(x1); Iter::Ranges::ToValues > vx1ub(x1ub); int i=0; int j=0; // Cancel all elements that are no longer in the upper bound while (vx1ub()) { if (iv[i].idx < vx1ub.val()) { iv[i].var.cancel(home,this, PC_SET_ANY); i++; continue; } iv[j] = iv[i]; ++vx1ub; ++i; ++j; } // cancel the variables with index greater than // max of lub(x1) for (int k=i; k x1u(x1); Iter::Ranges::Cache > x1uc(x1u); Iter::Ranges::ToValues > > vx1u(x1uc); int i=0; int j=0; while (vx1u()) { while (iv[i].idx < vx1u.val()) { iv[j] = iv[i]; i++; j++; } assert(iv[i].idx == vx1u.val()); SetView candidate = iv[i].var; int candidateInd = iv[i].idx; GlbRanges clb(candidate); BndSetRanges uos(unionOfSelected); Iter::Ranges::Inter, BndSetRanges> inter(clb, uos); if (inter()) { ModEvent me = x1.exclude(home,candidateInd); fix_flag |= me_modified(me); GECODE_ME_CHECK(me); candidate.cancel(home,this, PC_SET_ANY); ++i; ++vx1u; continue; } iv[j] = iv[i]; ++vx1u; ++i; ++j; } unionOfSelected.dispose(home); // copy remaining variables for (int k=i; k x1lb(x1); Iter::Ranges::ToValues > vx1lb(x1lb); int i=0; for (; vx1lb(); ++vx1lb) { while (iv[i].idx < vx1lb.val()) i++; assert(iv[i].idx==vx1lb.val()); GlbRanges x1lb2(x1); Iter::Ranges::ToValues > vx1lb2(x1lb2); for (int j=0; vx1lb2(); ++vx1lb2) { while (iv[j].idx < vx1lb2.val()) j++; assert(iv[j].idx==vx1lb2.val()); if (iv[i].idx!=iv[j].idx) { GlbRanges xilb(iv[i].var); ModEvent me = iv[j].var.excludeI(home,xilb); fix_flag |= me_modified(me); GECODE_ME_CHECK(me); } } } } // remove all elements from the selector that overlap // with all other possibly selected elements, if // at least two more elements need to be selected if (x1.cardMin()-x1.glbSize() > 1) { UnknownRanges x1u(x1); Iter::Ranges::Cache > x1uc(x1u); Iter::Ranges::ToValues > > vx1u(x1uc); for (; vx1u() && x1.cardMin()-x1.glbSize() > 1; ++vx1u) { int i = 0; while (iv[i].idx < vx1u.val()) i++; assert(iv[i].idx == vx1u.val()); bool flag=true; UnknownRanges x1u2(x1); Iter::Ranges::ToValues > vx1u2(x1u2); for (; vx1u2(); ++vx1u2) { int j = 0; while (iv[j].idx < vx1u2.val()) j++; assert(iv[j].idx == vx1u2.val()); if (iv[i].idx!=iv[j].idx) { GlbRanges xjlb(iv[j].var); GlbRanges xilb(iv[i].var); Iter::Ranges::Inter, GlbRanges > inter(xjlb, xilb); if (!inter()) { flag = false; goto here; } } } here: if (flag) { ModEvent me = x1.exclude(home,iv[i].idx); fix_flag |= me_modified(me); GECODE_ME_CHECK(me); } } } // if exactly two more elements need to be selected // and there is a possible element i such that all other pairs of // elements overlap, select i UnknownRanges x1u(x1); Iter::Ranges::Cache > x1uc(x1u); Iter::Ranges::ToValues > > vx1u(x1uc); for (; x1.cardMin()-x1.glbSize() == 2 && vx1u(); ++vx1u) { int i = 0; while (iv[i].idx < vx1u.val()) i++; assert (iv[i].idx == vx1u.val()); bool flag=true; UnknownRanges x1u2(x1); Iter::Ranges::ToValues > vx1u2(x1u2); for (; vx1u2(); ++vx1u2) { int j = 0; while (iv[j].idx < vx1u2.val()) j++; assert (iv[j].idx == vx1u2.val()); if (iv[i].idx!=iv[j].idx) { UnknownRanges x1u3(x1); Iter::Ranges::ToValues > vx1u3(x1u3); for (; vx1u3(); ++vx1u3) { int k = 0; while (iv[k].idx < vx1u3.val()) k++; assert (iv[k].idx == vx1u3.val()); if (iv[j].idx!=iv[k].idx && iv[i].idx!=iv[k].idx) { GlbRanges xjlb(iv[j].var); GlbRanges xilb(iv[k].var); Iter::Ranges::Inter, GlbRanges > inter(xjlb, xilb); if (!inter()) { flag = false; goto here2; } } } } } here2: if (flag) { ModEvent me = x1.include(home,iv[i].idx); fix_flag |= me_modified(me); GECODE_ME_CHECK(me); } } } while (fix_flag); bool allAssigned = true; for (int i=iv.size(); i--;) if (!iv[i].var.assigned()) { allAssigned = false; break; } if (!x1.assigned()) allAssigned = false; return allAssigned ? ES_SUBSUMED(this,home) : ES_FIX; } }}} // STATISTICS: set-prop