/* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */ /* * Main authors: * Christopher Mears * * Contributing authors: * Christian Schulte * Guido Tack * * Copyright: * Christopher Mears, 2011 * Christian Schulte, 2011 * Guido Tack, 2011 * * Last modified: * $Date: 2011-07-12 20:49:06 +1000 (Tue, 12 Jul 2011) $ by $Author: tack $ * $Revision: 12172 $ * * 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 Precede { template forceinline Single::Index::Index(Space& home, Propagator& p, Council& c, int i0) : Advisor(home,p,c), i(i0) {} template forceinline Single::Index::Index(Space& home, bool share, Index& a) : Advisor(home,share,a), i(a.i) {} template forceinline ExecStatus Single::updateAlpha(Space& home) { int n = x.size(); while (alpha < n) { if (x[alpha].notContains(s)) { GECODE_ME_CHECK(x[alpha].exclude(home, t)); } else if (x[alpha].contains(t)) { GECODE_ME_CHECK(x[alpha].include(home, s)); } else { break; } alpha++; } return ES_OK; } template forceinline ExecStatus Single::updateBeta(Space& home) { int n = x.size(); do { beta++; } while ((beta < n) && (x[beta].notContains(s) || x[beta].contains(t))); if (beta > gamma) { GECODE_ME_CHECK(x[alpha].exclude(home, t)); GECODE_ME_CHECK(x[alpha].include(home, s)); } return ES_OK; } template forceinline Single::Single(Home home, ViewArray& x0, int s0, int t0, int b, int g) : NaryPropagator(home,x0), c(home), s(s0), t(t0), alpha(0), beta(b), gamma(g) { for (int i=x.size(); i--; ) if (!x[i].assigned()) x[i].subscribe(home,*new (home) Index(home,*this,c,i)); View::schedule(home, *this, ME_SET_BB); } template inline ExecStatus Single::post(Home home, ViewArray& x, int s, int t) { { int alpha = 0; while (alpha < x.size()) { if (x[alpha].notContains(s)) { GECODE_ME_CHECK(x[alpha].exclude(home, t)); } else if (x[alpha].contains(t)) { GECODE_ME_CHECK(x[alpha].include(home, s)); } else { break; } alpha++; } x.drop_fst(alpha); if (x.size() == 0) return ES_OK; } // alpha has been normalized to 0 int beta = 0, gamma = 0; do { gamma++; } while ((gamma < x.size()) && (!x[gamma].notContains(s) || !x[gamma].contains(t))); do { beta++; } while ((beta < x.size()) && (x[beta].notContains(s) || x[beta].contains(t))); if (beta > gamma) { GECODE_ME_CHECK(x[0].exclude(home, t)); GECODE_ME_CHECK(x[0].include(home, s)); return ES_OK; } if (gamma < x.size()) x.drop_lst(gamma); (void) new (home) Single(home, x, s, t, beta, gamma); return ES_OK; } template forceinline Single::Single(Space& home, bool share, Single& p) : NaryPropagator(home, share, p), s(p.s), t(p.t), alpha(p.alpha), beta(p.beta), gamma(p.gamma) { c.update(home, share, p.c); } template Propagator* Single::copy(Space& home, bool share) { // Try to eliminate assigned views at the beginning if (alpha > 0) { int i = 0; while ((i < alpha) && x[i].assigned()) i++; x.drop_fst(i); for (Advisors as(c); as(); ++as) as.advisor().i -= i; alpha -= i; beta -= i; gamma -= i; } // Try to eliminate assigned views at the end if (gamma < x.size()) { int i = x.size()-1; while ((i > gamma) && x[i].assigned()) i--; x.drop_lst(i); } return new (home) Single(home, share, *this); } template inline size_t Single::dispose(Space& home) { // Cancel remaining advisors for (Advisors as(c); as(); ++as) x[as.advisor().i].cancel(home,as.advisor()); c.dispose(home); (void) NaryPropagator::dispose(home); return sizeof(*this); } template PropCost Single::cost(const Space&, const ModEventDelta&) const { return PropCost::linear(PropCost::LO, x.size()); } template ExecStatus Single::advise(Space& home, Advisor& a0, const Delta&) { Index& a(static_cast(a0)); int i = a.i; // Check for gamma if ((beta <= gamma) && (i < gamma) && x[i].notContains(s) && x[i].contains(t)) gamma = i; if (x[i].assigned()) { a.dispose(home,c); if (c.empty()) return ES_NOFIX; } else if ((i < alpha) || (i > gamma)) { x[i].cancel(home,a); a.dispose(home,c); return (c.empty()) ? ES_NOFIX : ES_FIX; } if (beta > gamma) return ES_NOFIX; if ((alpha == i) || (beta == i)) return ES_NOFIX; return ES_FIX; } template ExecStatus Single::propagate(Space& home, const ModEventDelta&) { int n = x.size(); if (beta > gamma) { GECODE_ME_CHECK(x[alpha].exclude(home, t)); GECODE_ME_CHECK(x[alpha].include(home, s)); return home.ES_SUBSUMED(*this); } if (alpha < n && (x[alpha].notContains(s) || x[alpha].contains(t))) { if (x[alpha].notContains(s)) { GECODE_ME_CHECK(x[alpha].exclude(home, t)); } else { GECODE_ME_CHECK(x[alpha].include(home, s)); } alpha++; while (alpha < beta) { if (x[alpha].notContains(s)) { GECODE_ME_CHECK(x[alpha].exclude(home, t)); } else { GECODE_ME_CHECK(x[alpha].include(home, s)); } alpha++; } GECODE_ES_CHECK(updateAlpha(home)); beta = alpha; if (alpha < n) GECODE_ES_CHECK(updateBeta(home)); } else if ((beta < n) && (x[beta].notContains(s) || x[beta].contains(t))) { GECODE_ES_CHECK(updateBeta(home)); } return (c.empty()) ? home.ES_SUBSUMED(*this) : ES_FIX; } }}} // STATISTICS: set-prop