re-prop.hpp gecode/int/rel.hh /usr/include/gecode/int/member.hh Gecode Gecode::Int Gecode::Int::Member /*-*-mode:C++;c-basic-offset:2;indent-tabs-mode:nil-*-*/ /* *Mainauthors: *ChristianSchulte<schulte@gecode.org> * *Copyright: *ChristianSchulte,2011 * *Lastmodified: *$Date:2012-09-0717:31:22+0200(Fri,07Sep2012)$by$Author:schulte$ *$Revision:13068$ * *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. * */ #include<gecode/int/rel.hh> namespaceGecode{namespaceInt{namespaceMember{ template<classView,ReifyModerm> forceinline ReProp<View,rm>::ReProp(Homehome,ValSet&vs,ViewArray<View>&x,Viewy, BoolViewb0) :Prop<View>(home,vs,x,y),b(b0){ b.subscribe(home,*this,PC_BOOL_VAL); } template<classView,ReifyModerm> inlineExecStatus ReProp<View,rm>::post(Homehome,ViewArray<View>&x,Viewy,BoolViewb){ if(x.size()==0){ if(rm!=RM_PMI) GECODE_ME_CHECK(b.zero(home)); returnES_OK; } x.unique(home); if(x.size()==1) returnRel::ReEqDom<View,BoolView,rm>::post(home,x[0],y,b); if(x.same(home,y)){ if(rm!=RM_IMP) GECODE_ME_CHECK(b.one(home)); returnES_OK; } //Eliminateassignedviewsandstorethemintothevalueset ValSetvs; add(home,vs,x); switch(vs.compare(y)){ caseIter::Ranges::CS_SUBSET: if(rm!=RM_IMP) GECODE_ME_CHECK(b.one(home)); returnES_OK; caseIter::Ranges::CS_DISJOINT: if(x.size()==0){ if(rm!=RM_PMI) GECODE_ME_CHECK(b.zero(home)); returnES_OK; } break; caseIter::Ranges::CS_NONE: break; default: GECODE_NEVER; } (void)new(home)ReProp<View,rm>(home,vs,x,y,b); returnES_OK; } template<classView,ReifyModerm> forceinline ReProp<View,rm>::ReProp(Space&home,boolshare,ReProp<View,rm>&p) :Prop<View>(home,share,p){ b.update(home,share,p.b); } template<classView,ReifyModerm> Propagator* ReProp<View,rm>::copy(Space&home,boolshare){ returnnew(home)ReProp<View,rm>(home,share,*this); } template<classView,ReifyModerm> forceinlinesize_t ReProp<View,rm>::dispose(Space&home){ b.cancel(home,*this,PC_BOOL_VAL); (void)Prop<View>::dispose(home); returnsizeof(*this); } template<classView,ReifyModerm> ExecStatus ReProp<View,rm>::propagate(Space&home,constModEventDelta&med){ //Addassignedviewstovalueset if(View::me(med)==ME_INT_VAL) add(home,vs,x); if(b.one()){ if(rm==RM_PMI) returnhome.ES_SUBSUMED(*this); ValSetvsc(vs); vs.flush(); GECODE_REWRITE(*this,Prop<View>::post(home,vsc,x,y)); } if(b.zero()){ if(rm!=RM_IMP){ ValSet::Rangesvsr(vs); GECODE_ME_CHECK(y.minus_r(home,vsr,false)); for(inti=x.size();i--;) GECODE_ES_CHECK(Rel::Nq<View>::post(home,x[i],y)); } returnhome.ES_SUBSUMED(*this); } //Eliminateviewsfromx eliminate(home); switch(vs.compare(y)){ caseIter::Ranges::CS_SUBSET: if(rm!=RM_IMP) GECODE_ME_CHECK(b.one(home)); returnhome.ES_SUBSUMED(*this); caseIter::Ranges::CS_DISJOINT: if(x.size()==0){ if(rm!=RM_PMI) GECODE_ME_CHECK(b.zero(home)); returnhome.ES_SUBSUMED(*this); } break; caseIter::Ranges::CS_NONE: break; default: GECODE_NEVER; } //Checkwhetheryisinunionofxandvalueset if(x.size()>0){ Regionr(home); ValSet::Rangesvsr(vs); ViewRanges<View>xsr(x[x.size()-1]); Iter::Ranges::NaryUnionu(r,vsr,xsr); for(inti=x.size()-1;i--;){ ViewRanges<View>xir(x[i]); u|=xir; } ViewRanges<View>yr(y); if(Iter::Ranges::disjoint(u,yr)){ if(rm!=RM_PMI) GECODE_ME_CHECK(b.zero(home)); returnhome.ES_SUBSUMED(*this); } } returnES_FIX; } }}} //STATISTICS:int-prop