int-lq.hpp /usr/include/gecode/int/count.hh Gecode Gecode::Int Gecode::Int::Count /*-*-mode:C++;c-basic-offset:2;indent-tabs-mode:nil-*-*/ /* *Mainauthors: *ChristianSchulte<schulte@gecode.org> * *Copyright: *ChristianSchulte,2006 * *Lastmodified: *$Date:2011-08-2914:59:24+0200(Mon,29Aug2011)$by$Author:schulte$ *$Revision:12359$ * *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{namespaceInt{namespaceCount{ template<classVX,classVY> forceinline LqInt<VX,VY>::LqInt(Homehome,ViewArray<VX>&x,intn_s,VYy,intc) :IntBase<VX,VY>(home,x,n_s,y,c){} template<classVX,classVY> ExecStatus LqInt<VX,VY>::post(Homehome,ViewArray<VX>&x,VYy,intc){ //Eliminatedecidedviews intn_x=x.size(); for(inti=n_x;i--;) switch(holds(x[i],y)){ caseRT_FALSE: x[i]=x[--n_x];break; caseRT_TRUE: x[i]=x[--n_x];c--;break; caseRT_MAYBE: break; default: GECODE_NEVER; } x.size(n_x); if(c<0) returnES_FAILED; if(c>=n_x) returnES_OK; //Allviewsmustbedifferent if(c==0) returnpost_false(home,x,y); (void)new(home)LqInt<VX,VY>(home,x,n_x-c+1,y,c); returnES_OK; } template<classVX,classVY> forceinline LqInt<VX,VY>::LqInt(Space&home,boolshare,LqInt<VX,VY>&p) :IntBase<VX,VY>(home,share,p){} template<classVX,classVY> Actor* LqInt<VX,VY>::copy(Space&home,boolshare){ returnnew(home)LqInt<VX,VY>(home,share,*this); } template<classVX,classVY> ExecStatus LqInt<VX,VY>::propagate(Space&home,constModEventDelta&){ //Eliminatedecidedviewsfromsubscribedviews intn_x=x.size(); for(inti=n_s;i--;) switch(holds(x[i],y)){ caseRT_FALSE: x[i].cancel(home,*this,PC_INT_DOM); x[i]=x[--n_s];x[n_s]=x[--n_x]; break; caseRT_TRUE: x[i].cancel(home,*this,PC_INT_DOM); x[i]=x[--n_s];x[n_s]=x[--n_x];c--; break; caseRT_MAYBE: break; default: GECODE_NEVER; } x.size(n_x); if(c<0) returnES_FAILED; if(c>=n_x) returnhome.ES_SUBSUMED(*this); //Eliminatedecidedviewsfromunsubscribedviews for(inti=n_x;i-->n_s;) switch(holds(x[i],y)){ caseRT_FALSE:x[i]=x[--n_x];break; caseRT_TRUE:x[i]=x[--n_x];c--;break; caseRT_MAYBE:break; default:GECODE_NEVER; } x.size(n_x); if(c<0) returnES_FAILED; if(c>=n_x) returnhome.ES_SUBSUMED(*this); if(c==0){ //Allviewsmustbedifferent GECODE_ES_CHECK(post_false(home,x,y)); returnhome.ES_SUBSUMED(*this); } //Now,theremustbenewsubscriptionsfromx[n_s]uptox[n_x-c+1] intm=n_x-c; while(n_s<=m) x[n_s++].subscribe(home,*this,PC_INT_DOM,false); returnES_FIX; } }}} //STATISTICS:int-prop