re-subset.hpp /usr/include/gecode/set/rel.hh Gecode Gecode::Set Gecode::Set::Rel /*-*-mode:C++;c-basic-offset:2;indent-tabs-mode:nil-*-*/ /* *Mainauthors: *GuidoTack<tack@gecode.org> *ChristianSchulte<schulte@gecode.org> * *Copyright: *GuidoTack,2004 *ChristianSchulte,2004 * *Lastmodified: *$Date:2012-10-1905:58:26+0200(Fri,19Oct2012)$by$Author:tack$ *$Revision:13156$ * *ThisfileispartofGecode,thegenericconstraint *developmentenvironment: *http://www.gecode.org * *Permissionisherebygranted,freeofcharge,toanypersonobtaining *acopyofthissoftwareandassociateddocumentationfiles(the *"Software"),todealintheSoftwarewithoutrestriction,including *withoutlimitationtherightstouse,copy,modify,merge,publish, *distribute,sublicense,and/orsellcopiesoftheSoftware,andto *permitpersonstowhomtheSoftwareisfurnishedtodoso,subjectto *thefollowingconditions: * *Theabovecopyrightnoticeandthispermissionnoticeshallbe *includedinallcopiesorsubstantialportionsoftheSoftware. * *THESOFTWAREISPROVIDED"ASIS",WITHOUTWARRANTYOFANYKIND, *EXPRESSORIMPLIED,INCLUDINGBUTNOTLIMITEDTOTHEWARRANTIESOF *MERCHANTABILITY,FITNESSFORAPARTICULARPURPOSEAND *NONINFRINGEMENT.INNOEVENTSHALLTHEAUTHORSORCOPYRIGHTHOLDERSBE *LIABLEFORANYCLAIM,DAMAGESOROTHERLIABILITY,WHETHERINANACTION *OFCONTRACT,TORTOROTHERWISE,ARISINGFROM,OUTOFORINCONNECTION *WITHTHESOFTWAREORTHEUSEOROTHERDEALINGSINTHESOFTWARE. * */ namespaceGecode{namespaceSet{namespaceRel{ template<classView0,classView1,ReifyModerm> forceinline ReSubset<View0,View1,rm>::ReSubset(Homehome,View0y0, View1y1,Gecode::Int::BoolViewy2) :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<classView0,classView1,ReifyModerm> forceinline ReSubset<View0,View1,rm>::ReSubset(Space&home,boolshare,ReSubset&p) :Propagator(home,share,p){ x0.update(home,share,p.x0); x1.update(home,share,p.x1); b.update(home,share,p.b); } template<classView0,classView1,ReifyModerm> PropCost ReSubset<View0,View1,rm>::cost(constSpace&,constModEventDelta&)const{ returnPropCost::ternary(PropCost::LO); } template<classView0,classView1,ReifyModerm> forceinlinesize_t ReSubset<View0,View1,rm>::dispose(Space&home){ 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); returnsizeof(*this); } template<classView0,classView1,ReifyModerm> ExecStatus ReSubset<View0,View1,rm>::post(Homehome,View0x0,View1x1, Gecode::Int::BoolViewb){ (void)new(home)ReSubset<View0,View1,rm>(home,x0,x1,b); returnES_OK; } template<classView0,classView1,ReifyModerm> Actor* ReSubset<View0,View1,rm>::copy(Space&home,boolshare){ returnnew(home)ReSubset<View0,View1,rm>(home,share,*this); } template<classView0,classView1,ReifyModerm> ExecStatus ReSubset<View0,View1,rm>::propagate(Space&home,constModEventDelta&){ if(b.one()){ if(rm==RM_PMI) returnhome.ES_SUBSUMED(*this); GECODE_REWRITE(*this,(Subset<View0,View1>::post(home(*this),x0,x1))); } if(b.zero()){ if(rm==RM_IMP) returnhome.ES_SUBSUMED(*this); GECODE_REWRITE(*this,(NoSubset<View0,View1>::post(home(*this),x0,x1))); } //checkwhethercardinalitiesstillallowsubset if(x0.cardMin()>x1.cardMax()){ if(rm!=RM_PMI) GECODE_ME_CHECK(b.zero_none(home)); returnhome.ES_SUBSUMED(*this); } //checklub(x0)subsetglb(x1) { LubRanges<View0>x0ub(x0); GlbRanges<View1>x1lb(x1); Iter::Ranges::Diff<LubRanges<View0>,GlbRanges<View1>>d(x0ub,x1lb); if(!d()){ if(rm!=RM_IMP) GECODE_ME_CHECK(b.one_none(home)); returnhome.ES_SUBSUMED(*this); } } //checkglb(x0)subsetlub(x1) { GlbRanges<View0>x0lb(x0); LubRanges<View1>x1ub(x1); Iter::Ranges::Diff<GlbRanges<View0>,LubRanges<View1>>d(x0lb,x1ub); if(d()){ if(rm!=RM_PMI) GECODE_ME_CHECK(b.zero_none(home)); returnhome.ES_SUBSUMED(*this); }elseif(x0.assigned()&&x1.assigned()){ if(rm!=RM_IMP) GECODE_ME_CHECK(b.one_none(home)); returnhome.ES_SUBSUMED(*this); } } if(x0.cardMin()>0){ LubRanges<View0>x0ub(x0); LubRanges<View1>x1ub(x1); Iter::Ranges::Inter<LubRanges<View0>,LubRanges<View1>> i(x0ub,x1ub); if(!i()){ if(rm!=RM_PMI) GECODE_ME_CHECK(b.zero_none(home)); returnhome.ES_SUBSUMED(*this); } } returnES_FIX; } }}} //STATISTICS:set-prop