int-gq.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 GqInt<VX,VY>::GqInt(Homehome,ViewArray<VX>&x,intn_s,VYy,intc) :IntBase<VX,VY>(home,x,n_s,y,c){} template<classVX,classVY> ExecStatus GqInt<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); //RHStoolarge if(n_x<c) returnES_FAILED; //Whateverthex[i]takeforvalues,theinequalityissubsumed if(c<=0) returnES_OK; //Allviewsmustbeequal if(c==n_x) returnpost_true(home,x,y); (void)new(home)GqInt<VX,VY>(home,x,c+1,y,c); returnES_OK; } template<classVX,classVY> forceinline GqInt<VX,VY>::GqInt(Space&home,boolshare,GqInt<VX,VY>&p) :IntBase<VX,VY>(home,share,p){} template<classVX,classVY> Actor* GqInt<VX,VY>::copy(Space&home,boolshare){ returnnew(home)GqInt<VX,VY>(home,share,*this); } template<classVX,classVY> ExecStatus GqInt<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(n_x<c) returnES_FAILED; if(c<=0) 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(n_x<c) returnES_FAILED; if(c<=0) returnhome.ES_SUBSUMED(*this); if(c==n_x){ //Allviewsmustbeequal GECODE_ES_CHECK(post_true(home,x,y)); returnhome.ES_SUBSUMED(*this); } //Now,theremustbenewsubscriptionsfromx[n_s]uptox[c+1] while(n_s<=c) x[n_s++].subscribe(home,*this,PC_INT_DOM,false); returnES_FIX; } }}} //STATISTICS:int-prop