/* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */ /* * Main authors: * Guido Tack * Christian Schulte * * Bugfixes provided by: * Grégoire Dooms * * Copyright: * Guido Tack, 2004 * Christian Schulte, 2004 * * Last modified: * $Date: 2008-01-31 18:29:16 +0100 (Thu, 31 Jan 2008) $ by $Author: tack $ * $Revision: 6017 $ * * 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 Rel { template forceinline ReEq::ReEq(Space* home, View0 y0, View1 y1, Gecode::Int::BoolView y2) : Propagator(home), x0(y0), x1(y1), b(y2) { b.subscribe(home,this, Gecode::Int::PC_INT_VAL); x0.subscribe(home,this, PC_SET_ANY); x1.subscribe(home,this, PC_SET_ANY); } template forceinline ReEq::ReEq(Space* home, bool share, ReEq& p) : Propagator(home,share,p) { x0.update(home,share,p.x0); x1.update(home,share,p.x1); b.update(home,share,p.b); } template PropCost ReEq::cost(ModEventDelta) const { return PC_TERNARY_LO; } template Support::Symbol ReEq::ati(void) { return Reflection::mangle("Gecode::Set::Rel::ReEq"); } template Reflection::ActorSpec ReEq::spec(const Space* home, Reflection::VarMap& m) const { Reflection::ActorSpec s(ati()); return s << x0.spec(home, m) << x1.spec(home, m) << b.spec(home, m); } template void ReEq::post(Space* home, Reflection::VarMap& vars, const Reflection::ActorSpec& spec) { spec.checkArity(3); View0 x0(home, vars, spec[0]); View1 x1(home, vars, spec[1]); Gecode::Int::BoolView b(home, vars, spec[2]); (void) new (home) ReEq(home,x0,x1,b); } template size_t ReEq::dispose(Space* home) { assert(!home->failed()); b.cancel(home,this, Gecode::Int::PC_INT_VAL); x0.cancel(home,this, PC_SET_ANY); x1.cancel(home,this, PC_SET_ANY); (void) Propagator::dispose(home); return sizeof(*this); } template ExecStatus ReEq::post(Space* home, View0 x0, View1 x1, Gecode::Int::BoolView b) { (void) new (home) ReEq(home,x0,x1,b); return ES_OK; } template Actor* ReEq::copy(Space* home, bool share) { return new (home) ReEq(home,share,*this); } template ExecStatus ReEq::propagate(Space* home, ModEventDelta) { if (b.one()) GECODE_REWRITE(this,(Eq::post(home,x0,x1))); if (b.zero()) GECODE_REWRITE(this,(Distinct::post(home,x0,x1))); if (x0.assigned() && x1.assigned()) { // directly test x0==x1 GlbRanges x0lb(x0); GlbRanges x1lb(x1); for (; x0lb() && x1lb(); ++x0lb, ++x1lb) { if (x0lb.min() != x1lb.min() || x0lb.max() != x1lb.max()) { GECODE_ME_CHECK(b.zero_none(home)); return ES_SUBSUMED(this,home); } } if (!x0lb() && !x1lb()) { GECODE_ME_CHECK(b.one_none(home)); return ES_SUBSUMED(this,home); } else { GECODE_ME_CHECK(b.zero_none(home)); return ES_SUBSUMED(this,home); } } // check whether cardinalities still allow equality if (x0.cardMin() > x1.cardMax() || x1.cardMin() > x0.cardMax()) { GECODE_ME_CHECK(b.zero_none(home)); return ES_SUBSUMED(this,home); } // check glb(x0) subset lub(x1) GlbRanges x0lb(x0); LubRanges x1ub(x1); Iter::Ranges::Diff, LubRanges > diff1(x0lb, x1ub); if ( diff1() ) { GECODE_ME_CHECK(b.zero_none(home)); return ES_SUBSUMED(this,home); } // check glb(x1) subset lub(x0) GlbRanges x1lb(x1); LubRanges x0ub(x0); Iter::Ranges::Diff, LubRanges > diff2(x1lb, x0ub); if ( diff2() ) { GECODE_ME_CHECK(b.zero_none(home)); return ES_SUBSUMED(this,home); } return ES_FIX; } }}} // STATISTICS: set-prop