superofinter.hpp /usr/include/gecode/set/rel-op.hh Gecode Gecode::Set Gecode::Set::RelOp /*-*-mode:C++;c-basic-offset:2;indent-tabs-mode:nil-*-*/ /* *Mainauthors: *GuidoTack<tack@gecode.org> *ChristianSchulte<schulte@gecode.org> * *Contributingauthors: *GaborSzokoli<szokoli@gecode.org> * *Copyright: *GuidoTack,2004 *ChristianSchulte,2004 *GaborSzokoli,2004 * *Lastmodified: *$Date:2010-03-0317:32:21+0100(Wed,03Mar2010)$by$Author:schulte$ *$Revision:10364$ * *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{namespaceRelOp{ template<classView0,classView1,classView2> forceinline SuperOfInter<View0,View1,View2>::SuperOfInter (Homehome,View0y0,View1y1,View2y2) :MixTernaryPropagator<View0,PC_SET_ANY,View1,PC_SET_ANY, View2,PC_SET_CLUB>(home,y0,y1,y2){} template<classView0,classView1,classView2> forceinline SuperOfInter<View0,View1,View2>::SuperOfInter (Space&home,boolshare,SuperOfInter<View0,View1,View2>&p) :MixTernaryPropagator<View0,PC_SET_ANY,View1,PC_SET_ANY, View2,PC_SET_CLUB>(home,share,p){} template<classView0,classView1,classView2> ExecStatus SuperOfInter<View0,View1,View2>::post(Homehome, View0x0,View1x1,View2x2){ (void)new(home)SuperOfInter<View0,View1,View2>(home,x0,x1,x2); returnES_OK; } template<classView0,classView1,classView2> Actor* SuperOfInter<View0,View1,View2>::copy(Space&home,boolshare){ returnnew(home)SuperOfInter(home,share,*this); } template<classView0,classView1,classView2> ExecStatus SuperOfInter<View0,View1,View2>::propagate(Space&home,constModEventDelta&med){ boolallassigned=x0.assigned()&&x1.assigned()&&x2.assigned(); ModEventme0=View0::me(med); ModEventme1=View1::me(med); ModEventme2=View2::me(med); boolmodified=false; do{ //glb(x2)>=glb(x0)^glb(x1) if(modified||Rel::testSetEventLB(me0,me1)){ GlbRanges<View0>lb0(x0); GlbRanges<View1>lb1(x1); Iter::Ranges::Inter<GlbRanges<View0>,GlbRanges<View1>> is(lb0,lb1); GECODE_ME_CHECK_MODIFIED(modified,x2.includeI(home,is)); } //lub(x0)-=glb(x1)-lub(x2) //lub(x1)-=glb(x0)-lub(x2) if(modified||Rel::testSetEventAnyB(me0,me1,me2)){ modified=false; GlbRanges<View1>lb12(x1); LubRanges<View2>ub22(x2); Iter::Ranges::Diff<GlbRanges<View1>,LubRanges<View2>> diff1(lb12,ub22); GECODE_ME_CHECK_MODIFIED(modified,x0.excludeI(home,diff1)); GlbRanges<View0>lb01(x0); LubRanges<View2>ub23(x2); Iter::Ranges::Diff<GlbRanges<View0>,LubRanges<View2>> diff2(lb01,ub23); GECODE_ME_CHECK_MODIFIED(modified,x1.excludeI(home,diff2)); }else{ modified=false; } //Cardinalitypropagation if(modified|| Rel::testSetEventCard(me0,me1,me2)|| Rel::testSetEventUB(me0,me1) ){ LubRanges<View0>ub0(x0); LubRanges<View1>ub1(x1); Iter::Ranges::Union<LubRanges<View0>,LubRanges<View1>>u(ub0,ub1); unsignedintm=Iter::Ranges::size(u); if(m<x0.cardMin()+x1.cardMin()){ GECODE_ME_CHECK_MODIFIED(modified, x2.cardMin(home, x0.cardMin()+x1.cardMin()-m)); } if(m+x2.cardMax()>x1.cardMin()){ GECODE_ME_CHECK_MODIFIED(modified, x0.cardMax(home, m+x2.cardMax()-x1.cardMin())); } if(m+x2.cardMax()>x0.cardMin()){ GECODE_ME_CHECK_MODIFIED(modified, x1.cardMax(home, m+x2.cardMax()-x0.cardMin())); } } }while(modified); if(shared(x0,x1,x2)){ if(allassigned){ returnhome.ES_SUBSUMED(*this); }else{ returnES_NOFIX; } }else{ if(x0.assigned()+x1.assigned()+x2.assigned()>=2){ returnhome.ES_SUBSUMED(*this); }else{ returnES_FIX; } } } }}} //STATISTICS:set-prop